From d40d063b4fa720d627a27e7a6c69e00666d6766a Mon Sep 17 00:00:00 2001 From: Casper Andersson Date: Fri, 20 Oct 2023 22:54:23 +0200 Subject: [PATCH] Add CI Signed-off-by: Casper Andersson --- .github/workflows/build.yml | 61 +++++++++++++++++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..9e8ffb6 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,61 @@ +# SPDX-License-Identifier: MIT +# SPDX-FileCopyrightText: 2023 Casper Andersson +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 arm + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - uses: pguyot/arm-runner-action@v2 + with: + base_image: raspios_lite:2022-04-04 + commands: | + mkdir build + cd build + cmake -DCMAKE_BUILD_TYPE=RELEASE .. + make + make test + #- 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