diff options
author | Chris Packham <judge.packham@gmail.com> | 2021-11-10 13:45:11 +1300 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2021-11-14 20:10:54 +1300 |
commit | 95130d134e31ee1fe13bb96e19b75e19cb99db25 (patch) | |
tree | 85da5d956680f87cd3bdcf5868adfbdc0ba49363 /.github | |
parent | 25f6dae85e0fa95fdb16dcc84d8e033626319610 (diff) | |
download | crosstool-ng-95130d134e31ee1fe13bb96e19b75e19cb99db25.tar.gz crosstool-ng-95130d134e31ee1fe13bb96e19b75e19cb99db25.tar.bz2 crosstool-ng-95130d134e31ee1fe13bb96e19b75e19cb99db25.zip |
CI: install the latest GNU make on macOS
The CI builds currently seem unhappy on macOS when we build make
ourselves. Install GNU make via brew so that we don't have to build it
ourselves.
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/continuous-integration-workflow.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml index a0b93fa9..ce6a63b6 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow.yml @@ -24,7 +24,7 @@ jobs: if: ${{ runner.os == 'macOS' }} run: | brew install autoconf automake bash binutils gawk gnu-sed \ - gnu-tar help2man ncurses + gnu-tar help2man make ncurses - name: "build ct-ng" run: | if [ "$RUNNER_OS" == "macOS" ]; then @@ -170,7 +170,7 @@ jobs: if: ${{ runner.os == 'macOS' }} run: | brew install autoconf automake bash binutils gawk gnu-sed \ - gnu-tar help2man ncurses pkg-config + gnu-tar help2man make ncurses pkg-config echo "$GITHUB_WORKSPACE/.local/bin" >> $GITHUB_PATH - name: "build ${{ matrix.sample }} for ${{ matrix.host }}" run: | |