From 41681db424cb797709591f267d2d5f3296c828d4 Mon Sep 17 00:00:00 2001 From: Robert Adam Date: Sat, 7 May 2022 19:42:09 +0200 Subject: [PATCH] Add CI workflow --- .github/workflows/ci.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..2ba044e --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,21 @@ +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 + platforms: "linux/amd64" + build_latest: + uses: ./.github/workflows/build_and_publish.yml + with: + mumble_version: "latest" + docker_version: '0' + publish: false + platforms: "linux/amd64"