Skip to content

Commit

Permalink
github-ci: Install autoconf on Darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
bgamari committed Apr 25, 2024
1 parent cc69f1a commit f9c0c0e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,10 @@ jobs:
install: >-
autotools
- name: Set up autoreconf (Darwin)
if: ${{ runner.os == 'macOS' }}
run: brew install autoconf

- name: Run autoreconf (Windows)
if: ${{ runner.os == 'Windows' }}
run: autoreconf -i
Expand All @@ -61,6 +65,10 @@ jobs:
if: ${{ runner.os != 'Windows' }}
run: autoreconf -i

- name: Set up LLVM (ARM)
if: ${{ runner.arch == 'ARM64' && runner.os == 'macOS' }}
run: brew install llvm-13

- name: Configure the build
run: |
cabal configure --enable-tests --enable-benchmarks --disable-documentation
Expand Down

0 comments on commit f9c0c0e

Please sign in to comment.