Fix CI (#270) #54
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# This file based on https://gist.github.com/mwouts/9842452d020c08faf9e84a3bba38a66f | |
# See: https://help.github.com/en/actions/reference/software-installed-on-github-hosted-runners | |
# 2020-06-22 - slg - customized | |
# 2020-06-27 - slg - expanded to G++ for MacOS | |
# 2020-07-03 - slg - ported to be13_api; removed python (be13_api doesn't use python) | |
name: TCPFLOW CI ON MAC AND UBUNTU (c++14) | |
on: | |
push: | |
branches: | |
- '**' # This will trigger the action for all branches | |
pull_request: | |
branches: | |
- main # Specify the branches for which pull_request events should trigger the action | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: ['macos-latest', 'ubuntu-latest'] | |
steps: | |
# https://github.com/actions/checkout | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Install C++ dependencies on MacOS | |
if: startsWith(matrix.os, 'macOS') | |
run: | | |
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') | |
run: | | |
sudo apt install libtool autoconf automake g++ libboost-all-dev libssl-dev libpcap-dev libcairo2-dev | |
automake --help | |
- name: c/c++ test | |
run: | | |
bash bootstrap.sh | |
./configure && make && make check | |
- uses: ammaraskar/[email protected] | |
name: GCC Problem Matcher | |
- name: codecov report | |
if: startsWith(matrix.os, 'ubuntu') | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
run: | | |
bash .make-codecov |