-
Notifications
You must be signed in to change notification settings - Fork 101
137 lines (108 loc) · 4.58 KB
/
interchaintest.yaml
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
name: Run InterchainTest
on:
pull_request:
branches:
- main
- 'releases/**'
jobs:
build_images:
name: Build archway images
runs-on: ubuntu-latest
steps:
- name: Checkout archway-network/archway
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Get last release tag
id: lastrelease
uses: revam/gh-action-get-tag-and-version@v1
- name: Checkout heighliner
uses: actions/checkout@v3
with:
repository: strangelove-ventures/heighliner
path: heighliner
- name: Setup up Golang
uses: actions/setup-go@v4
with:
go-version-file: 'heighliner/go.mod'
- name: Install heighliner
run: cd heighliner && go install
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build current image
run: |
heighliner build --org archway-network --repo archway --dockerfile cosmos --build-target "make build" --build-env "BUILD_TAGS=muslc" --binaries "build/archwayd" --git-ref ${{ github.head_ref }} --chain archway --tag local
- name: Upload current image
uses: ishworkh/[email protected]
with:
image: archway:local
retention_days: 3
- name: Build ${{ steps.lastrelease.outputs.tag }} image
run: |
heighliner build --org archway-network --repo archway --dockerfile cosmos --build-target "make build" --build-env "BUILD_TAGS=muslc" --binaries "build/archwayd" --git-ref ${{ steps.lastrelease.outputs.tag }} --chain archway --tag ${{ steps.lastrelease.outputs.tag }}
- name: Upload ${{ steps.lastrelease.outputs.tag }} image
uses: ishworkh/[email protected]
with:
image: archway:${{ steps.lastrelease.outputs.tag }}
retention_days: 3
run_chain_upgrade_test:
name: Chain upgrade test
needs: [build_images]
runs-on: ubuntu-latest
steps:
- name: Checkout archway-network/archway/interchaintest
uses: actions/checkout@v3
with:
fetch-depth: 0
sparse-checkout: interchaintest
- name: Setup up Golang
uses: actions/setup-go@v4
with:
go-version-file: 'interchaintest/go.mod'
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Download current image
uses: actions/download-artifact@v3
with:
name: action_image_artifact_archway_local
- name: Load current image
run: docker load --input archway_local
- name: Get last release tag
id: lastrelease
uses: revam/gh-action-get-tag-and-version@v1
- name: Download ${{ steps.lastrelease.outputs.tag }} image
uses: actions/download-artifact@v3
with:
name: action_image_artifact_archway_${{ steps.lastrelease.outputs.tag }}
- name: Load ${{ steps.lastrelease.outputs.tag }} image
run: docker load --input archway_${{ steps.lastrelease.outputs.tag }}
- name: Run chain upgrade test
run: |
cd interchaintest
go test -v -race -run TestChainUpgrade
ibc_conformance_tests:
name: Gaia <> Archway Conformance
needs: [build_images]
runs-on: ubuntu-latest
steps:
- name: Checkout archway-network/archway/interchaintest
uses: actions/checkout@v3
with:
fetch-depth: 0
sparse-checkout: interchaintest
- name: Setup up Golang
uses: actions/setup-go@v4
with:
go-version-file: 'interchaintest/go.mod'
- name: Setup Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Download current image
uses: actions/download-artifact@v3
with:
name: action_image_artifact_archway_local
- name: Load current image
run: docker load --input archway_local
- name: Run chain conformance test
run: |
cd interchaintest
go test -v -race -run TestGaiaConformance