Skip to content

Commit

Permalink
fix: add munge developnment to gh workflow build
Browse files Browse the repository at this point in the history
  • Loading branch information
itkovian committed Dec 5, 2024
1 parent 7eee125 commit b5ef918
Showing 1 changed file with 13 additions and 12 deletions.
25 changes: 13 additions & 12 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit b5ef918

Please sign in to comment.