From 6cd1615863730a64df3522855248b6332f789553 Mon Sep 17 00:00:00 2001 From: Nathan Scott Date: Mon, 17 Aug 2020 15:40:47 +1000 Subject: Update ci.yml Attempt to fix Ubuntu dependencies, add macosx --- .github/workflows/ci.yml | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) (limited to '.github') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index acc19505..69ad7aec 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -7,17 +7,23 @@ on: branches: [ master ] jobs: - build: - + build-ubuntu-latest: runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: make + run: | + sudo apt-get install libncurses-dev + ./autogen.sh + ./configure + make + build-macos-latest: + runs-on: macos-latest steps: - uses: actions/checkout@v2 - - name: prepare - run: sudo apt-get install libncurses-dev - - name: autogen - run: ./autogen.sh - - name: configure - run: ./configure - name: make - run: make + run: | + ./autogen.sh + ./configure + make -- cgit v1.2.3