Skip to content

Commit 581df1f

Browse files
authored
Update test-install.yml
Install dependencies for smoke test on Linux
1 parent 400ffa6 commit 581df1f

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/test-install.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,14 @@ jobs:
3434
- name: Check Swift version
3535
run: swift --version
3636

37-
- name: get macOS smoke test prerequisites
37+
- name: Install pre-requisites for smoke test
3838
if: ${{ runner.os == 'macOS' }}
3939
run: brew install ninja
4040

41+
- name: Install pre-requisites for smoke test
42+
if: ${{ runner.os == 'Linux' }}
43+
run: sudo apt-get update && sudo apt-get install -y ninja-build
44+
4145
- name: Smoke test
4246
run: cmake -GNinja -S .github/smoke-test -B .cmake-build && cmake --build .cmake-build
4347

0 commit comments

Comments
 (0)