Skip to content

Commit

Permalink
fix: update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
itkovian committed Nov 19, 2024
1 parent 1ca2438 commit 961bf2d
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,21 @@ name: slurm C/C++ build

on:
push:
branches: [ 20.11.ug, 22.05.ug ]
branches: [22.05.ug, 23.02.ug, 24.05.ug]
pull_request:
branches: [ 20.11.ug, 22.05.ug ]
branches: [22.05.ug, 23.02.ug, 24.05.ug]

jobs:
build:

runs-on: ubuntu-20.04
runs-on: ubuntu-24.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@v4.2.2
- 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 961bf2d

Please sign in to comment.