-
-
Notifications
You must be signed in to change notification settings - Fork 34
47 lines (45 loc) · 1.61 KB
/
ci.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
name: CI
on: [ push, pull_request ]
# Note: As of now the strategy property is not supported when using reusable workflows, so we can't use a build
# matrix to create the different build cases (see https://docs.github.com/en/actions/using-workflows/reusing-workflows#limitations)
jobs:
build_1_4_230:
uses: ./.github/workflows/build_and_publish.yml
with:
mumble_version: "v1.4.230"
docker_version: '0'
publish: false
update_latest: false
platforms: "linux/amd64"
build_1_4_274:
uses: ./.github/workflows/build_and_publish.yml
with:
mumble_version: "v1.4.274"
docker_version: '0'
publish: false
update_latest: false
platforms: "linux/amd64"
build_1_4_287:
uses: ./.github/workflows/build_and_publish.yml
with:
mumble_version: "v1.4.287"
docker_version: '0'
publish: false
update_latest: false
platforms: "linux/amd64"
build_1_5_634:
uses: ./.github/workflows/build_and_publish.yml
with:
mumble_version: "v1.5.634"
docker_version: '0'
publish: false
update_latest: true
platforms: "linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v8"
build_latest:
uses: ./.github/workflows/build_and_publish.yml
with:
mumble_version: "latest"
docker_version: '0'
publish: false
update_latest: true
platforms: "linux/amd64,linux/arm64,linux/arm/v7,linux/arm/v8"