try #617
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: End to End Tests | |
on: | |
pull_request: | |
push: | |
branches: | |
- dan/* | |
env: | |
TAR_PATH: heighliner.tar | |
GOPRIVATE: github.com/{organisation} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Build Docker Image | |
uses: strangelove-ventures/[email protected] | |
with: | |
registry: "" # empty registry, image only shared for e2e testing | |
tag: local # emulate local environment for consistency in interchaintest cases | |
tar-export-path: ${{ env.TAR_PATH }} # export a tarball that can be uploaded as an artifact for the e2e jobs | |
platform: linux/amd64 # test runner architecture only | |
clone-key: ${{ secrets.FIAT_TF_PRIV_DPLY }} | |
# Heighliner chains.yaml config | |
chain: noble | |
dockerfile: cosmos | |
build-target: make install | |
binaries: | | |
- /go/bin/nobled | |
- name: Publish Tarball as Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: noble-docker-image | |
path: ${{ env.TAR_PATH }} | |
prepare: | |
runs-on: ubuntu-latest | |
outputs: | |
matrix: ${{ steps.set-matrix.outputs.matrix }} | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
- name: Add and Configure SSH Deploy Key | |
env: | |
SSH_AUTH_SOCK: /tmp/ssh_agent.sock | |
run: | | |
mkdir -p ~/.ssh | |
ssh-keyscan github.com >> ~/.ssh/known_hosts | |
ssh-agent -a $SSH_AUTH_SOCK > /dev/null | |
echo "${{ secrets.FIAT_TF_PRIV_DPLY }}" | base64 -d | ssh-add - | |
echo "SSH_AUTH_SOCK=$SSH_AUTH_SOCK" >> $GITHUB_ENV | |
git config --global url."ssh://[email protected]/".insteadOf https://github.com/ | |
- name: Generate Matrix | |
id: set-matrix | |
run: | | |
# Run the command and convert its output to a JSON array | |
TESTS=$(cd e2e && go test -list . | grep -v "^ok " | jq -R -s -c 'split("\n")[:-1]') | |
echo "matrix=${TESTS}" >> $GITHUB_OUTPUT | |
test: | |
needs: | |
- build | |
- prepare | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
# names of `make` commands to run tests | |
test: ${{fromJson(needs.prepare.outputs.matrix)}} | |
fail-fast: false | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
- name: Download Tarball Artifact | |
uses: actions/download-artifact@v4 | |
with: | |
name: noble-docker-image | |
- name: Load Docker Image | |
run: docker image load -i ${{ env.TAR_PATH }} | |
- name: Add and Configure SSH Deploy Key | |
env: | |
SSH_AUTH_SOCK: /tmp/ssh_agent.sock | |
run: | | |
mkdir -p ~/.ssh | |
ssh-keyscan github.com >> ~/.ssh/known_hosts | |
ssh-agent -a $SSH_AUTH_SOCK > /dev/null | |
echo "${{ secrets.FIAT_TF_PRIV_DPLY }}" | base64 -d | ssh-add - | |
echo "SSH_AUTH_SOCK=$SSH_AUTH_SOCK" >> $GITHUB_ENV | |
git config --global url."ssh://[email protected]/".insteadOf https://github.com/ | |
- name: Run Tests | |
run: cd e2e && go test -race -v -timeout 30m -run ^${{ matrix.test }}$ . |