summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorNathan Scott <natoscott@users.noreply.github.com>2020-08-17 15:40:47 +1000
committerGitHub <noreply@github.com>2020-08-17 15:40:47 +1000
commit6cd1615863730a64df3522855248b6332f789553 (patch)
treeeca6442257a0b87e0fbf038b395bb7dea190b451 /.github
parentc86ac5cf98427c1a917342aef13a84aa91768ae6 (diff)
Update ci.yml
Attempt to fix Ubuntu dependencies, add macosx
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml24
1 files changed, 15 insertions, 9 deletions
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

© 2014-2024 Faster IT GmbH | imprint | privacy policy