Skip to content

Commit b2c059b

Browse files
committed
Missed moved file.
1 parent 9509905 commit b2c059b

1 file changed

Lines changed: 27 additions & 0 deletions

File tree

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
shell: bash
21+
run: |
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

Comments
 (0)