This commit is contained in:
froejdh_e 2025-04-16 09:13:28 +02:00
parent eab3fede8a
commit 5781a0ee27
2 changed files with 54 additions and 0 deletions

View File

@ -0,0 +1,27 @@
name: Build on RHEL9
on:
push:
workflow_dispatch:
permissions:
contents: read
jobs:
build:
runs-on: "ubuntu-latest"
container:
image: gitea.psi.ch/detectors-int/rhel9-detectors-dev
steps:
- uses: actions/checkout@v4
- name: Build library
run: |
mkdir build && cd build
cmake ..
make -j 2
- name: C++ unit tests
working-directory: ${{gitea.workspace}}/build
run: ctest

View File

@ -0,0 +1,27 @@
name: Build on RHEL9 using gitea.psi.ch/images/rhel9-developer-github-actions
on:
push:
workflow_dispatch:
permissions:
contents: read
jobs:
build:
runs-on: "ubuntu-latest"
container:
image: gitea.psi.ch/images/rhel9-developer-github-actions
steps:
- uses: actions/checkout@v4
- name: Build library
run: |
mkdir build && cd build
cmake ..
make -j 2
- name: C++ unit tests
working-directory: ${{gitea.workspace}}/build
run: ctest