Skip to content

Commit

Permalink
Add deployment test in ci (#73)
Browse files Browse the repository at this point in the history
* add deployment test in ci

* fix

* address comments

* fix test command

* debug

* change directory to changeset

---------

Co-authored-by: Makram Kamaleddine <[email protected]>
  • Loading branch information
AnieeG and makramkd authored Aug 21, 2024
1 parent 1b2d9ea commit e6e2e51
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ccip-integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ jobs:
run: |
cd $GITHUB_WORKSPACE/ccip
go mod download
cd $GITHUB_WORKSPACE/ccip/integration-tests
go mod download
- name: Build binary
run: |
cd $GITHUB_WORKSPACE/ccip
Expand All @@ -65,8 +67,8 @@ jobs:
CL_DATABASE_URL: ${{ env.DB_URL }}
- name: Run ccip ocr3 integration test
run: |
cd $GITHUB_WORKSPACE/ccip
go test -v -timeout 3m -run "^TestIntegration_OCR3Nodes$" ./core/capabilities/ccip/ccip_integration_tests
cd $GITHUB_WORKSPACE/ccip/integration-tests
go test -v -run '^Test0002_InitialDeploy$' -timeout 5m ./deployment/ccip/changeset
EXITCODE=${PIPESTATUS[0]}
if [ $EXITCODE -ne 0 ]; then
echo "Integration test failed"
Expand Down

0 comments on commit e6e2e51

Please sign in to comment.