building using rh9 container
Some checks failed
Build the package using cmake then documentation / build (ubuntu-latest, 3.12) (push) Has been cancelled

This commit is contained in:
froejdh_e
2025-04-02 10:39:46 +02:00
parent 1667584b32
commit 011fece1fb

View File

@ -0,0 +1,31 @@
name: Build on RHEL9
on:
push:
branches:
- main
workflow_dispatch:
permissions:
contents: read
jobs:
buildh:
runs-on: "ubuntu-latest"
container:
image: container.psi.ch/images/rhel9-developer-github-actions
steps:
- uses: actions/checkout@v4
- name: Setup dev env
run: |
sudo apt-get update
sudo apt-get -y install cmake gcc g++
- name: Build library
run: |
mkdir build
cd build
cmake ..
make -j 2