Skip to content
This repository was archived by the owner on Mar 17, 2024. It is now read-only.

Commit 448fb18

Browse files
committed
Limit Docker e2e tests to Linux
1 parent 2334dc5 commit 448fb18

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

.github/workflows/ci.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,4 +63,5 @@ jobs:
6363
with:
6464
run: npm test
6565
- name: Run Docker E2E tests
66-
run: docker exec nut-ci bash -c "bash $PWD/.build/build.sh ${PWD} 14"
66+
if: ${{matrix.os == 'ubuntu-latest'}}
67+
run: docker exec nut-ci bash -c "bash $PWD/.build/build.sh ${PWD} ${{matrix.node}}"

.github/workflows/snapshot_release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ jobs:
3535
with:
3636
run: npm test
3737
- name: Run Docker E2E tests
38-
run: docker exec nut-ci bash -c "bash $PWD/.build/build.sh ${PWD} 14"
39-
38+
if: ${{matrix.os == 'ubuntu-latest'}}
39+
run: docker exec nut-ci bash -c "bash $PWD/.build/build.sh ${PWD} ${{matrix.node}}"
4040

4141
deploy:
4242
needs:

.github/workflows/tagged_release.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ jobs:
3232
with:
3333
run: npm test
3434
- name: Run Docker E2E tests
35-
run: docker exec nut-ci bash -c "bash $PWD/.build/build.sh ${PWD} 14"
35+
if: ${{matrix.os == 'ubuntu-latest'}}
36+
run: docker exec nut-ci bash -c "bash $PWD/.build/build.sh ${PWD} ${{matrix.node}}"
3637

3738
deploy:
3839
needs:

0 commit comments

Comments
 (0)