Skip to content

Add aarch64 windows build #17

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Release Builds
on: push
env:
LLVM_VERSION: "19.1.7"
LLVM_VERSION: "20.1.4"
concurrency:
group: release-${{ github.ref }}
cancel-in-progress: true
Expand All @@ -27,6 +27,9 @@ jobs:
- os: "windows-2022"
shell: "msys2 {0}"
LLVM_TARGETS_TO_BUILD: "X86"
- os: "windows-11-arm"
shell: "msys2 {0}"
LLVM_TARGETS_TO_BUILD: "AArch64"
permissions:
contents: write
defaults:
Expand All @@ -35,7 +38,7 @@ jobs:
env:
LLVM_TARGETS_TO_BUILD: ${{ matrix.LLVM_TARGETS_TO_BUILD }}
steps:
- uses: spatial-model-editor/setup-ci@2025.02.03
- uses: spatial-model-editor/setup-ci@2025.05.09
- uses: actions/checkout@v4
- name: Build script
run: ./build.sh
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ Get the latest versions here:
- osx (Xcode 14.3 / macOS 13): [sme_deps_llvm_osx.tgz](https://github.com/spatial-model-editor/sme_deps_llvm/releases/latest/download/sme_deps_llvm_osx.tgz)
- 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)
- win64-mingw (mingw-w64-x86_64-gcc 14): [sme_deps_llvm_win64-mingw.tgz](https://github.com/spatial-model-editor/sme_deps_llvm/releases/latest/download/sme_deps_llvm_win64-mingw.tgz)
- win64-arm64 (mingw-w64-aarch64-gcc 14): [sme_deps_llvm_win64-arm64.tgz](https://github.com/spatial-model-editor/sme_deps_llvm/releases/latest/download/sme_deps_llvm_win64-arm64.tgz)
Loading