From b5ef918b2cc4db1ffa15a4068556fd53129d3b5c Mon Sep 17 00:00:00 2001 From: Andy Georges Date: Thu, 5 Dec 2024 15:15:03 +0100 Subject: [PATCH] fix: add munge developnment to gh workflow build --- .github/workflows/build.yml | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3a69be7cd3c..1bcd969c943 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,22 +2,23 @@ name: slurm C/C++ build on: push: - branches: [ 20.11.ug, 22.05.ug, 24.05.ug ] + branches: [20.11.ug, 22.05.ug, 24.05.ug] pull_request: - branches: [ 20.11.ug, 22.05.ug, 24.05.ug ] + branches: [20.11.ug, 22.05.ug, 24.05.ug] jobs: build: - runs-on: ubuntu-20.04 steps: - - uses: actions/checkout@v2 - - name: configure - run: ./configure --enable-multiple-slurmd --prefix=/tmp/slurm/ - - name: make - run: make -j - - name: make check - run: make -j check - - name: make install - run: make -j install + - uses: actions/checkout@v2 + - name: Install deps + run: sudo apt-get install -y libmunge-dev + - name: configure + run: ./configure --enable-multiple-slurmd --prefix=/tmp/slurm/ + - name: make + run: make -j + - name: make check + run: make -j check + - name: make install + run: make -j install