Skip to content

Commit

Permalink
Add CI
Browse files Browse the repository at this point in the history
Signed-off-by: Casper Andersson <[email protected]>
  • Loading branch information
cappe987 committed Oct 20, 2023
1 parent 4ecd363 commit 9f0ad60
Showing 1 changed file with 70 additions and 0 deletions.
70 changes: 70 additions & 0 deletions .github/workflows/build.yml
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

0 comments on commit 9f0ad60

Please sign in to comment.