Reduced UGent patch #52
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: slurm C/C++ build | |
on: | |
push: | |
branches: [22.05.ug, 23.02.ug, 24.05.ug] | |
pull_request: | |
branches: [22.05.ug, 23.02.ug, 24.05.ug] | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/[email protected] | |
- name: Install deps | |
run: sudo apt-get install -y munge-devel lua-devel mariadb-devel libjwt-devel pam-devel http-parser-devel json-c-devel libyaml-devel pmix pmix-devel ucx-devel dbus-devel kernel-headers hwloc-devel numactl-devel hdf5-devel | |
- 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 |