Skip to content

Commit

Permalink
Changed the runner names
Browse files Browse the repository at this point in the history
  • Loading branch information
yahgwai committed Sep 2, 2024
1 parent 21b5913 commit cf7feed
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
runs-on: ubuntu-8
strategy:
matrix:
pos: [true, false]
l3node: [true, false]
tokenbridge: [true, false]
pos: [pos, no-pos]
l3node: [l3node, no-l3node]
tokenbridge: [tokenbridge, no-tokenbridge]

steps:
- name: Checkout
Expand All @@ -38,4 +38,4 @@ jobs:
restore-keys: ${{ runner.os }}-buildx-

- name: Startup Nitro testnode
run: ${{ github.workspace }}/.github/workflows/testnode.bash --init-force ${{ matrix.l3node == true && '--l3node' || '' }} ${{ matrix.tokenbridge == true && '--tokenbridge' || '--no-tokenbridge' }} --no-simple --detach ${{ matrix.pos == true && '--pos' || '' }}
run: ${{ github.workspace }}/.github/workflows/testnode.bash --init-force ${{ matrix.l3node == 'l3node' && '--l3node' || '' }} ${{ matrix.tokenbridge == 'tokenbridge' && '--tokenbridge' || '--no-tokenbridge' }} --no-simple --detach ${{ matrix.pos == 'pos' && '--pos' || '' }}

0 comments on commit cf7feed

Please sign in to comment.