Skip to content

Commit 72258c4

Browse files
committed
ci: Fix dependency installation for namespace runners
1 parent 185f66e commit 72258c4

File tree

2 files changed

+3
-5
lines changed

2 files changed

+3
-5
lines changed

.github/workflows/gnd-binary-build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,18 +43,18 @@ jobs:
4343
key: ${{ matrix.target }}
4444

4545
- name: Install dependencies (Ubuntu)
46-
if: startsWith(matrix.runner, 'ubuntu')
46+
if: startsWith(matrix.runner, 'ubuntu') || startsWith(matrix.runner, 'nscloud-ubuntu') || contains(matrix.runner, 'linux')
4747
run: |
4848
sudo apt-get update
4949
sudo apt-get install -y protobuf-compiler musl-tools
5050
5151
- name: Install dependencies (macOS)
52-
if: startsWith(matrix.runner, 'macos')
52+
if: startsWith(matrix.runner, 'macos') || startsWith(matrix.runner, 'nscloud-macos') || contains(matrix.runner, 'macos')
5353
run: |
5454
brew install protobuf
5555
5656
- name: Install protobuf (Windows)
57-
if: startsWith(matrix.runner, 'windows')
57+
if: startsWith(matrix.runner, 'windows') || startsWith(matrix.runner, 'nscloud-windows') || contains(matrix.runner, 'windows')
5858
run: choco install protoc
5959

6060

Cargo.lock

Lines changed: 0 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)