From 08b82f56cd82913c4921456ba7a919b2f122addb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Ekstr=C3=B6m?= Date: Sun, 25 Jul 2021 12:01:06 +0300 Subject: github/workflows: add linux CI --- .github/workflows/build.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 01e1981ade..80ac1280e4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -66,3 +66,29 @@ jobs: if: ${{ failure() }} run: | cat ./build/config.log + linux: + runs-on: "ubuntu-20.04" + container: + image: "registry.cirno.systems/kiwi/containers/mpv-ci:stable-deps" + env: + CC: "${{ matrix.cc }}" + strategy: + matrix: + cc: + - "gcc" + - "clang" + steps: + - uses: actions/checkout@v2 + + - name: Install dependencies + run: | + ./bootstrap.py + + - name: Build + run: | + ./ci/build-tumbleweed.sh + + - name: Print configure log + if: ${{ failure() }} + run: | + cat ./build/config.log -- cgit v1.2.3