Skip to content

Commit 808216d

Browse files
committed
chore: updated build-linux.yml
1 parent 24bfec6 commit 808216d

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/build-linux.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,16 @@ jobs:
3333
build-essential cmake git wget
3434
3535
- name: Clone repositories
36-
run: cmake -DREDASM_FETCH_TESTS=${{ inputs.run_tests && 'ON' || 'OFF' }} -DREDASM_SHALLOW=ON -P Setup.cmake
36+
run: |
37+
cmake -DREDASM_FETCH_TESTS=${{ inputs.run_tests && 'ON' || 'OFF' }} \
38+
-DREDASM_SHALLOW=ON \
39+
-P Setup.cmake
3740
3841
- name: Configure
39-
run: cmake -B build -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=/usr ${{ inputs.run_tests && format('-DREDASM_SAMPLES={0}/samples', github.workspace) || '' }}
42+
run: |
43+
cmake -B build \
44+
-DCMAKE_BUILD_TYPE=Release \
45+
-DCMAKE_INSTALL_PREFIX=/usr ${{ inputs.run_tests && format('-DREDASM_SAMPLES={0}/samples', github.workspace) || '' }}
4046
4147
- name: Build
4248
run: cmake --build build --parallel

0 commit comments

Comments
 (0)