Skip to content

Commit

Permalink
tryong out heighliner gh workflow action
Browse files Browse the repository at this point in the history
  • Loading branch information
spoo-bar committed Jun 7, 2024
1 parent 7b8a71c commit c8a80d5
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 67 deletions.
59 changes: 24 additions & 35 deletions .github/workflows/interchaintest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,28 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Build current image
uses: strangelove-ventures/[email protected]
with:
registry: ""
tag: local
tar-export-path: archway_local_test.tar
platform: linux/amd64
git-ref: ${{ github.head_ref }}

chain: archway
dockerfile: cosmos
build-target: "make build"
build-env: "BUILD_TAGS=muslc"
binaries: "build/archwayd"
heighliner-tag: "v1.5.5"

- name: Upload current image
uses: actions/upload-artifact@v2
with:
name: archway_local_test
path: archway_local_test.tar

- name: Checkout archway-network/archway
uses: actions/checkout@v3
with:
Expand Down Expand Up @@ -109,42 +131,9 @@ jobs:
cd interchaintest
go test -v -race -run TestChainUpgrade
run_chain_start:
name: Run chain start test
needs: [build_images]
runs-on: ubuntu-latest

steps:
- name: Checkout archway-network/archway/interchaintest
uses: actions/checkout@v3
with:
fetch-depth: 0
sparse-checkout: interchaintest

- name: Setup up Golang
uses: actions/setup-go@v4
with:
go-version-file: 'interchaintest/go.mod'

- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Download current image
uses: actions/download-artifact@v3
with:
name: action_image_artifact_archway_local

- name: Load current image
run: docker load --input archway_local

- name: Run interchain transactions test
run: |
cd interchaintest
go test -v -race -run TestChainStart
ibc_conformance_tests:
name: Gaia <> Archway Conformance
needs: [build_images, run_chain_start]
needs: [build_images]
runs-on: ubuntu-latest

steps:
Expand Down Expand Up @@ -177,7 +166,7 @@ jobs:
cwica_tests:
name: Interchain transactions test
needs: [build_images, run_chain_start]
needs: [build_images]
runs-on: ubuntu-latest

steps:
Expand Down
32 changes: 0 additions & 32 deletions interchaintest/chain_start_test.go

This file was deleted.

0 comments on commit c8a80d5

Please sign in to comment.