Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
lupin012 committed Sep 29, 2024
1 parent 1958b1b commit b31c65a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/rpc-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
run: |
echo "Silkworm RpcDaemon starting..."
echo ${{ matrix.backend }}
if [ ${{ matrix.backend }} -eq "Erigon2" ]; then
if [ ${{ matrix.backend }} == 'Erigon2' ]; then
${{runner.workspace}}/silkworm/.github/workflows/e2_run_daemon.sh $ERIGON_DATA_DIR ./jwt.hex &
else
${{runner.workspace}}/silkworm/.github/workflows/e3_run_daemon.sh $ERIGON_DATA_DIR ./jwt.hex &
Expand All @@ -77,7 +77,7 @@ jobs:
# Run RPC integration test runner via http
echo ${{ matrix.backend }}
if [ ${{ matrix.backend }} -eq "Erigon2" ]; then
if [ ${{ matrix.backend }} == 'Erigon2' ]; then
${{runner.workspace}}/silkworm/.github/workflows/e2_run_tests.sh ${{runner.workspace}}/silkworm/build/cmd/jwt.hex
else
${{runner.workspace}}/silkworm/.github/workflows/e3_run_tests.sh ${{runner.workspace}}/silkworm/build/cmd/jwt.hex
Expand Down

0 comments on commit b31c65a

Please sign in to comment.