From 06d3b72dc27807e025e02efa4ed480403cfb1192 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guido=20G=C3=BCnther?= Date: Mon, 29 Jul 2024 11:56:48 +0200 Subject: [PATCH] ci: Add build workflow --- .github/workflows/build.yml | 18 ++++++++++++++++++ 1 file changed, 18 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..6701664 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,18 @@ +env: + DEPS: build-essential meson git libglib libglib2.0-dev libedit-dev + +name: Build eigenvalue +run-name: Build on ${{ github.actor }} +on: [push] +jobs: + Build-gcc: + runs-on: ubuntu-24.04 + steps: + - uses: actions/checkout@v4 + - name: Install deps + run: sudo apt -y install $DEPS + - name: setup + run: meson setup _build + - name: build + run: meson compile -C _build +