Skip to content

Commit

Permalink
syntax fix
Browse files Browse the repository at this point in the history
  • Loading branch information
antondlr committed May 15, 2024
1 parent bca7ee3 commit 67d5be6
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions .github/workflows/test-suite.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
run: test ${{ github.base_ref }} != "stable"
release-tests-ubuntu:
name: release-tests-ubuntu
if: !${{ github.event.label.name == 'skip-ci' }}
if: ${{ github.event.label.name != 'skip-ci' }}
# Use self-hosted runners only on the sigp repo.
runs-on: ${{ github.repository == 'sigp/lighthouse' && fromJson('["self-hosted", "linux", "CI", "large"]') || 'ubuntu-latest' }}
steps:
Expand All @@ -65,7 +65,7 @@ jobs:
run: sccache --show-stats
release-tests-windows:
name: release-tests-windows
if: !${{ github.event.label.name == 'skip-ci' }}
if: ${{ github.event.label.name != 'skip-ci' }}
runs-on: ${{ github.repository == 'sigp/lighthouse' && fromJson('["self-hosted", "windows", "CI"]') || 'windows-2019' }}
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
run: sccache --show-stats
beacon-chain-tests:
name: beacon-chain-tests
if: !${{ github.event.label.name == 'skip-ci' }}
if: ${{ github.event.label.name != 'skip-ci' }}
# Use self-hosted runners only on the sigp repo.
runs-on: ${{ github.repository == 'sigp/lighthouse' && fromJson('["self-hosted", "linux", "CI", "large"]') || 'ubuntu-latest' }}
env:
Expand All @@ -121,7 +121,7 @@ jobs:
run: sccache --show-stats
op-pool-tests:
name: op-pool-tests
if: !${{ github.event.label.name == 'skip-ci' }}
if: ${{ github.event.label.name != 'skip-ci' }}
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -137,7 +137,7 @@ jobs:
run: make test-op-pool
network-tests:
name: network-tests
if: !${{ github.event.label.name == 'skip-ci' }}
if: ${{ github.event.label.name != 'skip-ci' }}
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -153,7 +153,7 @@ jobs:
run: make test-network
slasher-tests:
name: slasher-tests
if: !${{ github.event.label.name == 'skip-ci' }}
if: ${{ github.event.label.name != 'skip-ci' }}
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -169,7 +169,7 @@ jobs:
run: make test-slasher
debug-tests-ubuntu:
name: debug-tests-ubuntu
if: !${{ github.event.label.name == 'skip-ci' }}
if: ${{ github.event.label.name != 'skip-ci' }}
# Use self-hosted runners only on the sigp repo.
runs-on: ${{ github.repository == 'sigp/lighthouse' && fromJson('["self-hosted", "linux", "CI", "large"]') || 'ubuntu-latest' }}
env:
Expand All @@ -194,7 +194,7 @@ jobs:
run: sccache --show-stats
state-transition-vectors-ubuntu:
name: state-transition-vectors-ubuntu
if: !${{ github.event.label.name == 'skip-ci' }}
if: ${{ github.event.label.name != 'skip-ci' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -207,7 +207,7 @@ jobs:
run: make run-state-transition-tests
ef-tests-ubuntu:
name: ef-tests-ubuntu
if: !${{ github.event.label.name == 'skip-ci' }}
if: ${{ github.event.label.name != 'skip-ci' }}
# Use self-hosted runners only on the sigp repo.
runs-on: ${{ github.repository == 'sigp/lighthouse' && fromJson('["self-hosted", "linux", "CI", "small"]') || 'ubuntu-latest' }}
env:
Expand All @@ -228,7 +228,7 @@ jobs:
run: sccache --show-stats
dockerfile-ubuntu:
name: dockerfile-ubuntu
if: !${{ github.event.label.name == 'skip-ci' }}
if: ${{ github.event.label.name != 'skip-ci' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -238,7 +238,7 @@ jobs:
run: docker run -t lighthouse:local lighthouse --version
basic-simulator-ubuntu:
name: basic-simulator-ubuntu
if: !${{ github.event.label.name == 'skip-ci' }}
if: ${{ github.event.label.name != 'skip-ci' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -251,7 +251,7 @@ jobs:
run: cargo run --release --bin simulator basic-sim
fallback-simulator-ubuntu:
name: fallback-simulator-ubuntu
if: !${{ github.event.label.name == 'skip-ci' }}
if: ${{ github.event.label.name != 'skip-ci' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -264,7 +264,7 @@ jobs:
run: cargo run --release --bin simulator fallback-sim
doppelganger-protection-test:
name: doppelganger-protection-test
if: !${{ github.event.label.name == 'skip-ci' }}
if: ${{ github.event.label.name != 'skip-ci' }}
runs-on: ${{ github.repository == 'sigp/lighthouse' && fromJson('["self-hosted", "linux", "CI", "small"]') || 'ubuntu-latest' }}
env:
# Enable portable to prevent issues with caching `blst` for the wrong CPU type
Expand Down Expand Up @@ -299,7 +299,7 @@ jobs:
./doppelganger_protection.sh success genesis.json
execution-engine-integration-ubuntu:
name: execution-engine-integration-ubuntu
if: !${{ github.event.label.name == 'skip-ci' }}
if: ${{ github.event.label.name != 'skip-ci' }}
runs-on: ${{ github.repository == 'sigp/lighthouse' && fromJson('["self-hosted", "linux", "CI", "small"]') || 'ubuntu-latest' }}
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -359,7 +359,7 @@ jobs:
run: cargo check --workspace
cargo-udeps:
name: cargo-udeps
if: !${{ github.event.label.name == 'skip-ci' }}
if: ${{ github.event.label.name != 'skip-ci' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -382,7 +382,7 @@ jobs:
RUSTFLAGS: ""
compile-with-beta-compiler:
name: compile-with-beta-compiler
if: !${{ github.event.label.name == 'skip-ci' }}
if: ${{ github.event.label.name != 'skip-ci' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -394,7 +394,7 @@ jobs:
run: make
cli-check:
name: cli-check
if: !${{ github.event.label.name == 'skip-ci' }}
if: ${{ github.event.label.name != 'skip-ci' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand All @@ -409,7 +409,7 @@ jobs:
# a PR is safe to merge. New jobs should be added here.
test-suite-success:
name: test-suite-success
if: !${{ github.event.label.name == 'skip-ci' }}
if: ${{ github.event.label.name != 'skip-ci' }}
runs-on: ubuntu-latest
needs: [
'target-branch-check',
Expand Down

0 comments on commit 67d5be6

Please sign in to comment.