forked from osmosis-labs/osmosis
-
Notifications
You must be signed in to change notification settings - Fork 2
74 lines (70 loc) · 1.87 KB
/
e2e-full.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
name: E2E Full Daily Run
on:
schedule:
- cron: "0 0 * * *"
workflow_dispatch:
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/e2e-full.yml
- name: Set output
id: vars
run: echo "git_diff=$GIT_DIFF" >> $GITHUB_OUTPUT
outputs:
git_diff: ${{ steps.vars.outputs.git_diff }}
e2e:
needs: get_diff
if: needs.get_diff.outputs.git_diff
runs-on: buildjet-4vcpu-ubuntu-2204
timeout-minutes: 20
steps:
- name: Check out repository
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
build-args: |
BASE_IMG_TAG=debug
BUILD_TAGS="netgo,muslc"
- 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
if: failure()
uses: actions/upload-artifact@v4
with:
name: logs.tgz
path: ./logs.tgz