Skip to content

Commit

Permalink
Fix for MacOS CI on GitHub.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kerilk committed May 7, 2024
1 parent d5d63ac commit 771a758
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/presubmit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- uses: actions/checkout@v3
- run: sudo apt update; sudo apt install -y ${{ matrix.compiler }} ruby-dev libgsl-dev python3-dev valgrind
if: ${{ matrix.os == 'ubuntu-latest' }}
- run: brew install gsl automake
- run: brew install gsl automake libtool
if: ${{ matrix.os == 'macos-latest' }}
- uses: actions/setup-python@v4
with:
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
- uses: actions/checkout@v4
- run: sudo apt update; sudo apt install -y gcc ruby-dev libgsl-dev python3-dev
if: ${{ matrix.os == 'ubuntu-latest' }}
- run: brew install gsl automake
- run: brew install gsl automake libtool
if: ${{ matrix.os == 'macos-latest' }}
- uses: actions/setup-python@v4
with:
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
- uses: actions/checkout@v4
- run: sudo apt update; sudo apt install -y gcc ruby-dev libgsl-dev python3-dev
if: ${{ matrix.os == 'ubuntu-latest' }}
- run: brew install gsl automake
- run: brew install gsl automake libtool
if: ${{ matrix.os == 'macos-latest' }}
- uses: actions/setup-python@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion connectors/kokkos/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(srcdir)/include
AM_CXXFLAGS = -Wall -Wextra -Wpedantic
AM_CXXFLAGS = -Wall -Wextra -Wpedantic $(GSL_CFLAGS)

if STRICT
AM_CXXFLAGS += -Werror
Expand Down

0 comments on commit 771a758

Please sign in to comment.