Fix CI tests #34
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
# SPDX-License-Identifier: MIT | |
# SPDX-FileCopyrightText: 2023 Casper Andersson <[email protected]> | |
name: Bob the Builder | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build: | |
name: Build x86 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Configure | |
run: | | |
mkdir build | |
cd build | |
cmake -DCMAKE_BUILD_TYPE=RELEASE .. | |
- name: Build | |
run: | | |
cd build | |
make | |
- name: Install test dependencies | |
run: | | |
sudo apt install tshark | |
sudo apt install tcpdump | |
- name: Test | |
run: | | |
cd build | |
make test | |
build-aarch64: | |
name: Build aarch64 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Installing dependencies | |
run: | | |
sudo apt install gcc-aarch64-linux-gnu | |
- name: Configure | |
run: | | |
mkdir build | |
cd build | |
cmake -DCMAKE_C_COMPILTER=/usr/bin/aarch64-linux-gnu-gcc -DCMAKE_BUILD_TYPE=RELEASE .. | |
- name: Build | |
run: | | |
cd build | |
make |