forked from osmosis-labs/osmosis
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
e2e: separate testing strategies (normal vs scheduled) (osmosis-labs#…
…6303) * separate e2e testing strategies * run full test on sched * move e2e back to test.yml * change name to runScheduledTest
- Loading branch information
1 parent
4b4baea
commit 5ec6593
Showing
6 changed files
with
123 additions
and
9 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
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@v3 | ||
- 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@v3 | ||
with: | ||
fetch-depth: 0 | ||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
- name: Build e2e image | ||
uses: docker/build-push-action@v4 | ||
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 |
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
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
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
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
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