From 9b591129ed6a7d572dc6ec37b7e5f8cca30614b7 Mon Sep 17 00:00:00 2001 From: "John J. Camilleri" Date: Thu, 14 Oct 2021 11:13:31 +0200 Subject: [PATCH] Install build tools with brew --- .github/workflows/build-majestic.yml | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/.github/workflows/build-majestic.yml b/.github/workflows/build-majestic.yml index e66af3a65..8248203c6 100644 --- a/.github/workflows/build-majestic.yml +++ b/.github/workflows/build-majestic.yml @@ -72,16 +72,14 @@ jobs: steps: - uses: actions/checkout@v2 - # All these are already available in GitHub runner - # - name: Install build tools - # run: | - # sudo apt-get update - # sudo apt-get install -y \ - # autoconf \ - # automake \ - # libtool \ - # make \ - # g++ + - name: Install build tools + run: | + brew install + autoconf \ + automake \ + libtool \ + # make \ + # g++ - name: Build C runtime working-directory: ./src/runtime/c