Skip to content

Commit

Permalink
Fix CI (#270)
Browse files Browse the repository at this point in the history
  • Loading branch information
catap authored Dec 19, 2024
1 parent 45b6033 commit 0b480fb
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 53 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: ['macos-latest', 'ubuntu-22.04']
os: ['macos-latest', 'ubuntu-latest']

steps:
# https://github.com/actions/checkout
Expand All @@ -29,7 +29,11 @@ jobs:
- name: Install C++ dependencies on MacOS
if: startsWith(matrix.os, 'macOS')
run: |
bash etc/install_autotools.sh
brew install libtool autoconf automake boost openssl libpcap
echo LDFLAGS="-L$(brew --prefix libpcap)/lib -L$(brew --prefix openssl)/lib -L$(brew --prefix boost)/lib" >> $GITHUB_ENV
echo CFLAGS="-I$(brew --prefix libpcap)/include -I$(brew --prefix openssl)/include -I$(brew --prefix boost)/include" >> $GITHUB_ENV
echo CXXFLAGS="-I$(brew --prefix libpcap)/include -I$(brew --prefix openssl)/include -I$(brew --prefix boost)/include" >> $GITHUB_ENV
echo PKG_CONFIG_PATH="$(brew --prefix libpcap)/pkgconfig:$(brew --prefix openssl)/lib/pkgconfig" >> $GITHUB_ENV
- name: Install C++ dependencies on Ubuntu
if: startsWith(matrix.os, 'ubuntu')
Expand Down
51 changes: 0 additions & 51 deletions etc/install_autotools.sh

This file was deleted.

0 comments on commit 0b480fb

Please sign in to comment.