Skip to content

chore: bump poa for amino fix (#99) #264

chore: bump poa for amino fix (#99)

chore: bump poa for amino fix (#99) #264

Workflow file for this run

name: E2E
on:
push:
branches:
- main
tags:
- "**"
pull_request:
branches:
- main
types: [opened, reopened, synchronize]
permissions:
contents: read
packages: write
env:
GO_VERSION: 1.22.7
TAR_PATH: /tmp/manifest-docker-image.tar
IMAGE_NAME: manifest-docker-image
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go ${{ env.GO_VERSION }}
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and export
uses: docker/build-push-action@v5
with:
context: .
tags: manifest:local
outputs: type=docker,dest=${{ env.TAR_PATH }}
build-args: |
BUILD_CMD=build
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: ${{ env.IMAGE_NAME }}
path: ${{ env.TAR_PATH }}
e2e-tests:
needs: build-docker
runs-on: ubuntu-latest
strategy:
matrix:
# names of `make` commands to run tests
test:
- "ictest-ibc"
- "ictest-poa"
- "ictest-tokenfactory"
- "ictest-manifest"
- "ictest-group-poa"
fail-fast: false
steps:
- name: Set up Go ${{ env.GO_VERSION }}
uses: actions/setup-go@v5
with:
go-version: ${{ env.GO_VERSION }}
- name: checkout chain
uses: actions/checkout@v4
- name: Download Tarball Artifact
uses: actions/download-artifact@v4
with:
name: ${{ env.IMAGE_NAME }}
path: /tmp
- name: Load Docker Image
run: |
docker image load -i ${{ env.TAR_PATH }}
docker image ls -a
- name: Run Test
run: make ${{ matrix.test }}