-
-
Notifications
You must be signed in to change notification settings - Fork 34
23 lines (21 loc) · 873 Bytes
/
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
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_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"