tMac needs automake to build - vaccinewars - be a doctor and try to vaccinate the world
(HTM) git clone git://src.adamsgaard.dk/vaccinewars
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit 8c0a8a6b6131682eae7a1d6e12b828ed6ff4e966
(DIR) parent a9847438157c478c91c0f35fb307d7365484f297
(HTM) Author: Ben Webb <ben@salilab.org>
Date: Wed, 16 Dec 2020 01:02:21 -0800
Mac needs automake to build
Diffstat:
M .github/workflows/build.yml | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
---
(DIR) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
t@@ -19,10 +19,14 @@ jobs:
steps:
- uses: actions/checkout@v2
- - name: Install dependencies
+ - name: Install dependencies (Linux)
if: matrix.os == 'ubuntu-latest'
run: |
sudo apt-get update -qq && sudo apt-get install -qq automake autoconf gcc libglib2.0-dev libcurl4-openssl-dev libgtk2.0-dev libgtk-3-dev
+ - name: Install dependencies (Mac)
+ if: matrix.os == 'macos-latest'
+ run: |
+ brew install automake
- name: Build
env:
FLAGS: {{ matrix.flags }}