From 069cb76a7a87997d9794c4f17c3abff5e5de0cfc Mon Sep 17 00:00:00 2001 From: Abdallah Ammar Date: Fri, 15 Nov 2024 11:21:47 +0100 Subject: [PATCH] workflow for checkin dependencies --- .github/workflows/configuration.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/configuration.yml diff --git a/.github/workflows/configuration.yml b/.github/workflows/configuration.yml new file mode 100644 index 0000000..787c38e --- /dev/null +++ b/.github/workflows/configuration.yml @@ -0,0 +1,27 @@ +name: QuAcK Configuration + +on: + push: + branches: + - ci + pull_request: + branches: + - master + schedule: + - cron: "00 20 * * 6" + + +jobs: + + configuration: + runs-on: ubuntu-20.04 + name: Dependencies + + steps: + - uses: actions/checkout@v3 + - name: Install dependencies + run: | + sudo apt install gfortran gcc liblapack-dev libblas-dev wget python3 make m4 pkg-config libhdf5-dev + - name: ninja + run: | + ./configure -i ninja || echo "Configuration failed"