We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 990170b commit 99ae1dcCopy full SHA for 99ae1dc
1 file changed
.github/workflows/ci.yml
@@ -57,7 +57,7 @@ jobs:
57
58
build-macos:
59
runs-on: macos-15
60
- timeout-minutes: 20
+ timeout-minutes: 25
61
steps:
62
- name: Checkout
63
uses: actions/checkout@v4
@@ -68,15 +68,20 @@ jobs:
68
xmake-version: latest
69
package-cache: true
70
71
+ - name: Install LLVM 20
72
+ run: brew install llvm@20
73
+
74
- name: Verify toolchain
75
run: |
76
xmake --version
77
+ /opt/homebrew/opt/llvm@20/bin/clang++ --version
78
clang --version
79
80
- name: Build with xmake
81
- xmake f -m release -vv -y
- xmake -j$(sysctl -n hw.ncpu)
82
+ export PATH=/opt/homebrew/opt/llvm@20/bin:$PATH
83
+ xmake f -p macosx -m release --toolchain=llvm --sdk=/opt/homebrew/opt/llvm@20 -y -vv
84
+ xmake -y -vv -j$(sysctl -n hw.ncpu)
85
86
build-windows:
87
runs-on: windows-latest
0 commit comments