-
Notifications
You must be signed in to change notification settings - Fork 8
122 lines (97 loc) · 3.18 KB
/
ictest-e2e.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
name: ictest
on: [push, pull_request]
# Cancel task if a new commit is pushed while old workflows run
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
env:
GO_VERSION: 1.19
jobs:
e2e-setup:
runs-on: ubuntu-latest
steps:
# Checkout
- uses: actions/checkout@v3
# Install Rust
- name: Install latest nightly toolchain
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
target: wasm32-unknown-unknown
override: true
# TODO can we cache cosmwasm workspace-optimizer crate.io deps? or does that need its own github ci build
- name: Build the artifact
run: make compile
- name: Extract branch name
shell: bash
run: echo "branch=$(echo ${GITHUB_REF#refs/heads/})" | tr '/' '_' >>$GITHUB_OUTPUT
id: extract_branch
- name: Archive production artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ steps.extract_branch.outputs.branch }}-contracts
retention-days: 1
path: |
artifacts
!artifacts/*.txt
test-basic:
runs-on: ubuntu-latest
needs: e2e-setup
steps:
- name: checkout chain
uses: actions/checkout@v3
- name: Extract branch name
shell: bash
run: echo "branch=$(echo ${GITHUB_REF#refs/heads/})" | tr '/' '_' >>$GITHUB_OUTPUT
id: extract_branch
- name: Setup Golang with cache
uses: magnetikonline/action-golang-cache@v4
with:
go-version: ${{ env.GO_VERSION }}
id: go
- uses: actions/download-artifact@v3
with:
name: ${{ steps.extract_branch.outputs.branch }}-contracts
path: artifacts
- run: make ictest-basic
test-conversion-cw20:
runs-on: ubuntu-latest
needs: e2e-setup
steps:
- name: checkout chain
uses: actions/checkout@v3
- name: Extract branch name
shell: bash
run: echo "branch=$(echo ${GITHUB_REF#refs/heads/})" | tr '/' '_' >>$GITHUB_OUTPUT
id: extract_branch
- name: Setup Golang with cache
uses: magnetikonline/action-golang-cache@v4
with:
go-version: ${{ env.GO_VERSION }}
id: go
- uses: actions/download-artifact@v3
with:
name: ${{ steps.extract_branch.outputs.branch }}-contracts
path: artifacts
- run: make ictest-conversion-cw20
test-conversion-native:
runs-on: ubuntu-latest
needs: e2e-setup
steps:
- name: checkout chain
uses: actions/checkout@v3
- name: Extract branch name
shell: bash
run: echo "branch=$(echo ${GITHUB_REF#refs/heads/})" | tr '/' '_' >>$GITHUB_OUTPUT
id: extract_branch
- name: Setup Golang with cache
uses: magnetikonline/action-golang-cache@v4
with:
go-version: ${{ env.GO_VERSION }}
id: go
- uses: actions/download-artifact@v3
with:
name: ${{ steps.extract_branch.outputs.branch }}-contracts
path: artifacts
- run: make ictest-conversion-native