E2E Full Daily Run #434
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: E2E Full Daily Run | |
on: | |
schedule: | |
- cron: "0 0 * * *" | |
workflow_dispatch: | |
env: | |
GO_VERSION: "1.20.5" | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
get_diff: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
- name: Get git diff | |
uses: technote-space/[email protected] | |
with: | |
PATTERNS: | | |
**/**.wasm | |
**/**.go | |
**/**.mod | |
**/**.sum | |
Makefile | |
Dockerfile | |
.github/workflows/test.yml | |
- name: Set output | |
id: vars | |
run: echo "::set-output name=git_diff::$GIT_DIFF" | |
outputs: | |
git_diff: ${{ steps.vars.outputs.git_diff }} | |
e2e: | |
needs: get_diff | |
if: needs.get_diff.outputs.git_diff | |
runs-on: self-hosted | |
timeout-minutes: 20 | |
steps: | |
- name: Clean up Pre-Existing E2E Docker containers | |
run: | | |
# Remove containers with names starting with "osmo-test-" | |
docker ps -aqf "name=osmo-test-*" | xargs -r docker rm -f | |
# Remove containers with names starting with "hermes-relayer" | |
docker ps -aqf "name=hermes-relayer*" | xargs -r docker rm -f | |
- name: Check out repository code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build e2e image | |
uses: docker/build-push-action@v5 | |
with: | |
load: true | |
context: . | |
tags: osmosis:debug | |
# Use experimental Cache backend API: | |
# https://github.com/docker/build-push-action/blob/master/docs/advanced/cache.md#cache-backend-api | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
build-args: | | |
BASE_IMG_TAG=debug | |
- name: Test e2e and Upgrade | |
run: make test-e2e-ci-scheduled | |
- name: Dump docker logs on failure | |
if: failure() | |
uses: jwalton/gh-docker-logs@v2 | |
with: | |
dest: "./logs" | |
- name: Tar logs | |
if: failure() | |
run: tar cvzf ./logs.tgz ./logs | |
- name: Upload logs to GitHub | |
uses: actions/upload-artifact@v3 | |
with: | |
name: logs.tgz | |
path: ./logs.tgz | |
if: failure() | |
- name: 🧹 Clean up Osmosis Home | |
if: always() | |
run: rm -rf $HOME/.osmosisd/ || true | |
- name: Clean up E2E Docker containers | |
run: | | |
# Remove containers with names starting with "osmo-test-" | |
docker ps -aqf "name=osmo-test-*" | xargs -r docker rm -f | |
# Remove containers with names starting with "hermes-relayer" | |
docker ps -aqf "name=hermes-relayer*" | xargs -r docker rm -f |