Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Emilgardis committed Feb 1, 2024
1 parent 3270209 commit ebf0ab8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ jobs:
# we should always have an artifact from a previous build.
remote:
needs: [test, check, generate-matrix]
if: needs.generate-matrix.outputs.tests.remote
if: fromJson(needs.generate-matrix.outputs.tests).remote
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -278,7 +278,7 @@ jobs:

bisect:
needs: [test, check, generate-matrix]
if: needs.generate-matrix.outputs.tests.bisect
if: fromJson(needs.generate-matrix.outputs.tests).bisect
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -299,7 +299,7 @@ jobs:

foreign:
needs: [test, check, generate-matrix]
if: needs.generate-matrix.outputs.tests.foreign
if: fromJson(needs.generate-matrix.outputs.tests).foreign
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -326,7 +326,7 @@ jobs:

docker-in-docker:
needs: [test, check, generate-matrix]
if: needs.generate-matrix.outputs.tests.docker-in-docker
if: fromJson(needs.generate-matrix.outputs.tests).docker-in-docker
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -350,7 +350,7 @@ jobs:
name: podman
runs-on: ubuntu-latest
needs: [shellcheck, test, check, generate-matrix]
if: needs.generate-matrix.outputs.tests.podman
if: fromJson(needs.generate-matrix.outputs.tests).podman
strategy:
fail-fast: false
outputs:
Expand Down

0 comments on commit ebf0ab8

Please sign in to comment.