There was an error while loading. Please reload this page.
1 parent 9509905 commit b2c059bCopy full SHA for b2c059b
1 file changed
.github/workflows/build_simc/action.yml
@@ -0,0 +1,27 @@
1
+name: build_simc
2
+
3
+inputs:
4
+ cache-key:
5
+ required: true
6
7
+runs:
8
+ using: 'composite'
9
10
+ steps:
11
+ - name: configure
12
+ shell: bash
13
+ run: |
14
+ cmake -H'simc-profile/simc/' \
15
+ -B'simc-profile/simc/b/ninja' -GNinja -DBUILD_GUI=OFF \
16
+ -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_COMPILER=clang++-18 \
17
+ -DCMAKE_CXX_STANDARD=17 -DSC_NO_NETWORKING=ON
18
19
+ - name: build
20
21
22
+ ninja -C 'simc-profile/simc/b/ninja'
23
24
+ - uses: actions/cache/save@v5
25
+ with:
26
+ path: simc-profile/simc/b/ninja/simc
27
+ key: ${{ inputs.cache-key }}
0 commit comments