-
Notifications
You must be signed in to change notification settings - Fork 2
84 lines (73 loc) · 2.05 KB
/
migaloo-build.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
name: migaloo-build
on:
pull_request:
branches:
- main
paths:
- 'bin/builder'
- 'arch.Dockerfile'
- 'alpine.Dockerfile'
- '.github/workflows/docker-build.yml'
- '.github/workflows/migaloo-build.yml'
push:
branches:
- main
paths:
- 'bin/builder'
- 'arch.Dockerfile'
- 'alpine.Dockerfile'
- '.github/workflows/docker-build.yml'
- '.github/workflows/migaloo-build.yml'
jobs:
migaloo-build:
uses: ./.github/workflows/docker-build.yml
secrets: inherit
strategy:
fail-fast: false
matrix:
#platform: ["linux/amd64", "linux/arm64"] # need arm runners
platform: ["linux/amd64"]
distro: ["alpine"]
version:
- "1.0.2"
- "2.0.6"
- "2.2.6"
- "3.0.0"
- "3.0.1-hotfix"
- "3.0.2"
- "3.0.3"
- "3.0.4"
include:
# Include Defaults (keep at top)
- name: "migaloo"
binary: "migalood"
build_command: "make install"
chain_registry_name: "migaloo"
go_version: "1.21.3"
repo: "White-Whale-Defi-Platform/migaloo-chain"
os: "linux"
arch: "amd64"
- version: "1.0.2"
go_version: "1.20.10"
- version: "2.0.6"
go_version: "1.20.10"
- version: "2.2.6"
go_version: "1.20.10"
- version: "3.0.2"
go_version: "1.21.3"
- version: "3.0.3"
go_version: "1.21.3"
- version: "3.0.4"
go_version: "1.21.3"
with:
binary: ${{ matrix.binary }}
build_command: ${{ matrix.build_command }}
chain_registry_name: ${{ matrix.chain_registry_name }}
go_version: ${{ matrix.go_version }}
name: ${{ matrix.name }}
os: ${{ matrix.os }}
arch: ${{ matrix.arch }}
distro: ${{ matrix.distro }}
platform: ${{ matrix.platform }}
repo: ${{ matrix.repo }}
version: ${{ matrix.version }}