From 2c11688db199ecfb89a010dd17061be208fe72d5 Mon Sep 17 00:00:00 2001 From: chrisjsimpson Date: Sun, 22 Dec 2024 21:08:37 +0000 Subject: [PATCH] add build-all pipeline action --- .github/workflows/build-all.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/build-all.yml diff --git a/.github/workflows/build-all.yml b/.github/workflows/build-all.yml new file mode 100644 index 0000000..09dff63 --- /dev/null +++ b/.github/workflows/build-all.yml @@ -0,0 +1,17 @@ +name: Build and Test + +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + - name: Install dependencies + run: sudo apt-get update && sudo apt-get install -y build-essential wget git autoconf + + - name: Run build-all.sh + run: ./build-all.sh