-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Casper Andersson <[email protected]>
- Loading branch information
Showing
1 changed file
with
70 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
# SPDX-License-Identifier: MIT | ||
# SPDX-FileCopyrightText: 2023 Casper Andersson <[email protected]> | ||
name: CI | ||
|
||
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 | ||
build-arm: | ||
name: Build arm | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Installing dependencies | ||
run: | | ||
sudo apt install gcc-arm-linux-gnueabi | ||
- name: Configure | ||
run: | | ||
mkdir build | ||
cd build | ||
cmake -DCMAKE_C_COMPILTER=/usr/bin/arm-linux-gnueabi-gcc -DCMAKE_BUILD_TYPE=RELEASE .. | ||
- name: Build | ||
run: | | ||
cd build | ||
make | ||