This repository has been archived by the owner on Jun 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 360
199 lines (193 loc) · 6.16 KB
/
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
# SPDX-License-Identifier: BUSL-1.1
#
# Copyright (C) 2023, Berachain Foundation. All rights reserved.
# Use of this software is govered by the Business Source License included
# in the LICENSE file of this repository and at www.mariadb.com/bsl11.
#
# ANY USE OF THE LICENSED WORK IN VIOLATION OF THIS LICENSE WILL AUTOMATICALLY
# TERMINATE YOUR RIGHTS UNDER THIS LICENSE FOR THE CURRENT AND ALL OTHER
# VERSIONS OF THE LICENSED WORK.
#
# THIS LICENSE DOES NOT GRANT YOU ANY RIGHT IN ANY TRADEMARK OR LOGO OF
# LICENSOR OR ITS AFFILIATES (PROVIDED THAT YOU MAY USE A TRADEMARK OR LOGO OF
# LICENSOR AS EXPRESSLY REQUIRED BY THIS LICENSE).
#
# TO THE EXTENT PERMITTED BY APPLICABLE LAW, THE LICENSED WORK IS PROVIDED ON
# AN “AS IS” BASIS. LICENSOR HEREBY DISCLAIMS ALL WARRANTIES AND CONDITIONS,
# EXPRESS OR IMPLIED, INCLUDING (WITHOUT LIMITATION) WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, NON-INFRINGEMENT, AND
# TITLE.
name: e2e
on:
pull_request:
push:
branches:
- main
jobs:
build-base:
strategy:
matrix:
namespace: [cosmos]
docker-version: [base]
os: [ubuntu-latest]
go-version: [1.20.6]
go-arch: [amd64]
image-name: ['polard/base:v0.0.0']
export-name: [base-image]
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Golang
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Run ${{ matrix.namespace }}:docker ${{ matrix.docker-version }} ${{ matrix.go-arch }}
uses: magefile/mage-action@v2
with:
version: latest
args: ${{ matrix.namespace }}:docker base ${{ matrix.go-arch }}
env:
GOPATH: /home/runner/go
- name: Save base image
run: docker save ${{ matrix.image-name }} -o ${{ matrix.export-name }}.tar
- name: Upload image artifact
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.export-name }}
path: ${{ matrix.export-name }}.tar
build-localnet:
needs: build-base
strategy:
matrix:
namespace: [localnet]
os: [ubuntu-latest]
go-version: [1.20.6]
base-image: [base-image]
image-name: ['localnet:latest']
export-name: [localnet]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Golang
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Download image artifact
uses: actions/download-artifact@v2
with:
name: ${{ matrix.base-image }}
- name: Load image
run: docker load -i ${{ matrix.base-image }}.tar
- name: Run ${{ matrix.namespace }}:build
uses: magefile/mage-action@v2
with:
version: latest
args: ${{ matrix.namespace }}:build
env:
GOPATH: /home/runner/go
- name: Save localnet image
run: docker save ${{ matrix.image-name }} -o ${{ matrix.export-name }}.tar
- name: Upload image artifact
uses: actions/upload-artifact@v2
with:
name: ${{ matrix.export-name }}
path: ${{ matrix.export-name }}.tar
hive:
needs: build-base
strategy:
matrix:
simulator: [polaris/rpc, polaris/graphql]
namespace: [cosmos]
os: [ubuntu-latest]
go-version: [1.20.6]
base-image: [base-image]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Golang
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Download image artifact
uses: actions/download-artifact@v2
with:
name: ${{ matrix.base-image }}
- name: Load image
run: docker load -i ${{ matrix.base-image }}.tar
- name: Cache Golang Deps
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go
key: ${{ runner.os }}-golang-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-golang-
- name: Run ${{ matrix.namespace }}:testhive ${{ matrix.simulator }}
uses: magefile/mage-action@v2
with:
version: latest
args: ${{ matrix.namespace }}:testhive ${{ matrix.simulator }}
env:
GOPATH: /home/runner/go
ci:
needs: build-localnet
strategy:
matrix:
namespace: ['', 'localnet']
os: [ubuntu-latest]
go-version: [1.20.6]
base-image: [localnet]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Golang
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Download image artifact
uses: actions/download-artifact@v2
with:
name: ${{ matrix.base-image }}
- name: Load image
run: docker load -i ${{ matrix.base-image }}.tar
- name: Cache Golang Deps
uses: actions/cache@v3
with:
path: |
~/.cache/go-build
~/go
key: ${{ runner.os }}-golang-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-golang-
- name: Install Go Tools
run: |
go run magefiles/setup/setup.go ci
- name: Run ${{ matrix.namespace }}:test
uses: magefile/mage-action@v2
with:
version: latest
args: ${{ matrix.namespace }}:test
env:
GOPATH: /home/runner/go
if: ${{ matrix.namespace == 'localnet' }}
- name: Run teste2e
uses: magefile/mage-action@v2
with:
version: latest
args: teste2e
env:
GOPATH: /home/runner/go
if: ${{ matrix.namespace == '' }}