From 2985b46926f00ee4d478b2122d8c8cca52c2cfaa Mon Sep 17 00:00:00 2001 From: Rafael Kitover Date: Sun, 16 Oct 2022 14:18:13 +0000 Subject: [PATCH] ci: add ubuntu-latest workflow Add basic build on ubuntu-latest to have at least one ci build on Linux. Signed-off-by: Rafael Kitover --- .github/workflows/ubuntu-build.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/ubuntu-build.yml diff --git a/.github/workflows/ubuntu-build.yml b/.github/workflows/ubuntu-build.yml new file mode 100644 index 00000000..319268f0 --- /dev/null +++ b/.github/workflows/ubuntu-build.yml @@ -0,0 +1,26 @@ +name: Ubuntu Latest Build +on: [push, pull_request] + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - name: Checkout the code + uses: actions/checkout@v2 + with: + submodules: recursive + + - name: Install Dependencies + run: >- + bash installdeps + + - name: Configure + run: >- + cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=Debug + + - name: Build + run: ninja -C build + + - name: Install + run: sudo ninja -C build install