Skip to content

Commit

Permalink
Add var to use custom nitro-contracts branch (#24)
Browse files Browse the repository at this point in the history
* Add var to use custom nitro-contracts branch

* Add var to customize token bridge branch
  • Loading branch information
gvladika authored Apr 24, 2024
1 parent 4a6c834 commit 8ae2f18
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion run-nitro-test-node/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,14 @@ inputs:
required: false
default: 'false'
description: 'Whether to start an L3 node in addition to the L2 node'
nitro-contracts-branch:
required: false
default: 'main'
description: 'The nitro-contracts branch to use'
token-bridge-branch:
required: false
default: 'main'
description: 'The token-bridge-contracts branch to use'
runs:
using: 'composite'
steps:
Expand All @@ -43,7 +51,8 @@ runs:
# See https://stackoverflow.com/a/72203688 for more info
run: |
cd nitro-testnode
./test-node.bash --init ${{ inputs.no-simple == 'true' && '--no-simple' || '' }} \
NITRO_CONTRACTS_BRANCH=${{ inputs.nitro-contracts-branch }} TOKEN_BRIDGE_BRANCH=${{ inputs.token-bridge-branch }} \
./test-node.bash --init ${{ inputs.no-simple == 'true' && '--no-simple' || '' }} \
${{ inputs.l3-node == 'true' && '--l3node' || '' }} \
${{ inputs.no-token-bridge == 'true' && '--no-tokenbridge' || '--tokenbridge' }} \
${{ inputs.l3-node == 'true' && inputs.no-l3-token-bridge != 'true' && '--l3-token-bridge' || '' }} \
Expand Down

0 comments on commit 8ae2f18

Please sign in to comment.