Skip to content

Commit

Permalink
Updated github actions runner to -latest.
Browse files Browse the repository at this point in the history
Attempt to fix macOS build.
  • Loading branch information
danielinux committed Oct 21, 2024
1 parent c9ab522 commit 4762e4f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: "Smoke test"
strategy:
matrix:
os: [ubuntu-20.04, macos-11]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
timeout-minutes: 30
steps:
Expand All @@ -23,7 +23,9 @@ jobs:
sudo apt-get install -y autoconf automake
- name: "Install dependencies (macOS)"
if: runner.os == 'macOS'
run: brew install autoconf automake
run: |
brew install autoconf automake libtool
autoupdate
- name: "Build"
run: |
autoreconf -fis
Expand Down

0 comments on commit 4762e4f

Please sign in to comment.