From 23937e96cc1687ceb693bb2f6291cacfb893538c Mon Sep 17 00:00:00 2001 From: Runchao Han Date: Wed, 11 Dec 2024 15:41:30 +1100 Subject: [PATCH] try --- .github/workflows/integration-e2e.yml | 21 +++++++++++++-------- Makefile | 3 +-- 2 files changed, 14 insertions(+), 10 deletions(-) diff --git a/.github/workflows/integration-e2e.yml b/.github/workflows/integration-e2e.yml index 3ae6cf4..bebbc7a 100644 --- a/.github/workflows/integration-e2e.yml +++ b/.github/workflows/integration-e2e.yml @@ -4,13 +4,18 @@ on: push: branches: - '**' - jobs: test: - uses: babylonlabs-io/.github/.github/workflows/reusable_go_lint_test.yml@v0.11.2 - with: - run-integration-tests: true - integration-tests-command: | - make build-ibcsim-bcd - make build-babylond - make test-e2e-bcd-consumer-integration + runs-on: ubuntu-22.04 + steps: + - name: Checkout code + uses: actions/checkout@v4 + + - name: Build IBC Simulator BCD Image + run: make build-ibcsim-bcd + + - name: Build Babylond Image + run: make build-babylond + + - name: Run Integration Tests + run: make test-e2e-bcd-consumer-integration diff --git a/Makefile b/Makefile index e028165..190a9e9 100644 --- a/Makefile +++ b/Makefile @@ -93,7 +93,6 @@ start-bcd-consumer-integration: $(MAKE) -C contrib/images start-bcd-consumer-integration test-e2e-bcd-consumer-integration: start-bcd-consumer-integration - @chmod -R 777 contrib/images/ibcsim-bcd/.testnets @cd tests/e2e - @go test -count 1 -run TestBCDConsumerIntegrationTestSuite -mod=readonly -timeout=60m -v github.com/babylonlabs-io/babylon-sdk/tests/e2e --tags=e2e + @go test -run TestBCDConsumerIntegrationTestSuite -mod=readonly -timeout=60m -v github.com/babylonlabs-io/babylon-sdk/tests/e2e --tags=e2e @cd -