Skip to content

Commit

Permalink
Fix CI integration test to reflect the new location of deployment/ (#276
Browse files Browse the repository at this point in the history
)
  • Loading branch information
0xnogo authored Oct 30, 2024
1 parent 09d6056 commit 8adab5c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ccip-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,8 +67,8 @@ jobs:
CL_DATABASE_URL: ${{ env.DB_URL }}
- name: Run ccip ocr3 initial deploy integration test
run: |
cd $GITHUB_WORKSPACE/chainlink/integration-tests
go test -v -run '^TestInitialDeploy$' -timeout 6m ./deployment/ccip/changeset
cd $GITHUB_WORKSPACE/chainlink/deployment
go test -v -run '^TestInitialDeploy$' -timeout 6m ./ccip/changeset
EXITCODE=${PIPESTATUS[0]}
if [ $EXITCODE -ne 0 ]; then
echo "Integration test failed"
Expand All @@ -80,8 +80,8 @@ jobs:
CL_DATABASE_URL: ${{ env.DB_URL }}
- name: Run ccip ocr3 add chain integration test
run: |
cd $GITHUB_WORKSPACE/chainlink/integration-tests
go test -v -run '^TestAddChainInbound$' -timeout 6m ./deployment/ccip/
cd $GITHUB_WORKSPACE/chainlink/deployment
go test -v -run '^TestAddChainInbound$' -timeout 6m ./ccip/
EXITCODE=${PIPESTATUS[0]}
if [ $EXITCODE -ne 0 ]; then
echo "Integration test failed"
Expand Down

0 comments on commit 8adab5c

Please sign in to comment.