Skip to content

Commit

Permalink
Simplify job structure
Browse files Browse the repository at this point in the history
  • Loading branch information
teor2345 authored Nov 20, 2023
1 parent d67da88 commit d3a60e2
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/ci-unit-tests-docker.patch-external.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,42 +21,43 @@ jobs:

test-all:
name: Test all
if: ${{ !contains(github.head_ref || github.ref, 'refs/heads/') }}
# This dependency allows all these jobs to depend on a single condition, making it easier to change.
needs: build
runs-on: ubuntu-latest
steps:
- run: 'echo "No build required"'

test-fake-activation-heights:
name: Test with fake activation heights
if: ${{ !contains(github.head_ref || github.ref, 'refs/heads/') }}
needs: build
runs-on: ubuntu-latest
steps:
- run: 'echo "No build required"'

test-empty-sync:
name: Test checkpoint sync from empty state
if: ${{ !contains(github.head_ref || github.ref, 'refs/heads/') }}
needs: build
runs-on: ubuntu-latest
steps:
- run: 'echo "No build required"'

test-lightwalletd-integration:
name: Test integration with lightwalletd
if: ${{ !contains(github.head_ref || github.ref, 'refs/heads/') }}
needs: build
runs-on: ubuntu-latest
steps:
- run: 'echo "No build required"'

test-configuration-file:
name: Test CI default Docker config file / Test default-conf in Docker
if: ${{ !contains(github.head_ref || github.ref, 'refs/heads/') }}
needs: build
runs-on: ubuntu-latest
steps:
- run: 'echo "No build required"'

test-zebra-conf-path:
name: Test CI custom Docker config file / Test custom-conf in Docker
if: ${{ !contains(github.head_ref || github.ref, 'refs/heads/') }}
needs: build
runs-on: ubuntu-latest
steps:
- run: 'echo "No build required"'

0 comments on commit d3a60e2

Please sign in to comment.