From 773b883175ae50db024d59c7cce85c73e3f47e67 Mon Sep 17 00:00:00 2001 From: Alan Antonuk Date: Tue, 29 Dec 2020 16:48:25 +0000 Subject: ci: Add MacOS github action config Replaces what was turned down in travis-ci. --- .github/workflows/ci.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) (limited to '.github') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 90ec657..452e08e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ name: CI on: [push] jobs: - build: + build-linux: runs-on: ubuntu-latest strategy: fail-fast: false @@ -31,4 +31,15 @@ jobs: shell: bash env: CC: ${{ matrix.compiler }} - run: ./travis.sh ${{ matrix.config }} \ No newline at end of file + run: ./travis.sh ${{ matrix.config }} + + build-macox: + runs-on: macos-latest + steps: + - uses: actions/checkout@v2 + with: + submodules: true + + - name: Configure Build & Test + shell: bash + run: ./travis.sh macos -- cgit v1.2.1