Skip to content

Commit 6e1c2d7

Browse files
committed
mingw -> msvc
1 parent 6c2acf7 commit 6e1c2d7

2 files changed

Lines changed: 8 additions & 13 deletions

File tree

.github/workflows/release.yml

Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: Release Builds
22
on: push
33
env:
4-
LLVM_VERSION: "22.1.1"
4+
LLVM_VERSION: "22.1.2"
55
concurrency:
66
group: release-${{ github.ref }}
77
cancel-in-progress: true
@@ -13,41 +13,36 @@ jobs:
1313
matrix:
1414
include:
1515
- os: "ubuntu-22.04"
16-
shell: "bash"
1716
LLVM_TARGETS_TO_BUILD: "X86"
1817
- os: "ubuntu-22.04"
19-
shell: "bash"
2018
LLVM_TARGETS_TO_BUILD: "X86"
2119
LLVM_USE_SANITIZER: Thread
2220
BUILD_TAG: "_tsan"
2321
- os: "ubuntu-22.04-arm"
24-
shell: "bash"
2522
LLVM_TARGETS_TO_BUILD: "AArch64"
2623
- os: "macos-14"
27-
shell: "bash"
2824
LLVM_TARGETS_TO_BUILD: "AArch64"
2925
- os: "windows-2022"
30-
shell: "msys2 {0}"
3126
LLVM_TARGETS_TO_BUILD: "X86"
3227
- os: "windows-11-arm"
33-
shell: "msys2 {0}"
3428
LLVM_TARGETS_TO_BUILD: "AArch64"
3529
permissions:
3630
contents: write
37-
defaults:
38-
run:
39-
shell: ${{ matrix.shell }}
4031
env:
4132
LLVM_TARGETS_TO_BUILD: ${{ matrix.LLVM_TARGETS_TO_BUILD }}
4233
LLVM_USE_SANITIZER: ${{ matrix.LLVM_USE_SANITIZER }}
4334
BUILD_TAG: ${{ matrix.BUILD_TAG }}
4435
steps:
45-
- uses: spatial-model-editor/setup-ci@2026.03.23
36+
- uses: spatial-model-editor/setup-ci@2026.03.27
4637
with:
4738
cache_id: ${{ matrix.BUILD_TAG }}
4839
- uses: actions/checkout@v6
4940
- name: Build script
41+
if: runner.os != 'Windows'
5042
run: ./build.sh
43+
- name: Build script
44+
if: runner.os == 'Windows'
45+
run: ./build.ps1
5146
- name: Upload binaries to release if commit is tagged
5247
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/')
5348
uses: svenstaro/upload-release-action@v2

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ Get the latest versions here:
77
- linux (clang 19 / Ubuntu 22.04): [sme_deps_llvm_linux.tgz](https://github.com/spatial-model-editor/sme_deps_llvm/releases/latest/download/sme_deps_llvm_linux.tgz)
88
- linux-arm64 (clang 19 / Ubuntu 22.04): [sme_deps_llvm_linux-arm64.tgz](https://github.com/spatial-model-editor/sme_deps_llvm/releases/latest/download/sme_deps_llvm_linux-arm64.tgz)
99
- osx-arm64 (Xcode 16.1 / macOS 14): [sme_deps_llvm_osx-arm64.tgz](https://github.com/spatial-model-editor/sme_deps_llvm/releases/latest/download/sme_deps_llvm_osx-arm64.tgz)
10-
- win64-mingw (mingw-w64-x86_64-gcc 15): [sme_deps_llvm_win64-mingw.tgz](https://github.com/spatial-model-editor/sme_deps_llvm/releases/latest/download/sme_deps_llvm_win64-mingw.tgz)
11-
- win64-arm64 (mingw-w64-aarch64-clang 21): [sme_deps_llvm_win64-arm64.tgz](https://github.com/spatial-model-editor/sme_deps_llvm/releases/latest/download/sme_deps_llvm_win64-arm64.tgz)
10+
- win64 (MSVC): [sme_deps_llvm_win64.tgz](https://github.com/spatial-model-editor/sme_deps_llvm/releases/latest/download/sme_deps_llvm_win64.tgz)
11+
- win64-arm64 (MSVC): [sme_deps_llvm_win64-arm64.tgz](https://github.com/spatial-model-editor/sme_deps_llvm/releases/latest/download/sme_deps_llvm_win64-arm64.tgz)

0 commit comments

Comments
 (0)