mirror of
https://github.com/slsdetectorgroup/aare.git
synced 2025-06-24 20:21:09 +02:00
building using rh9 container
Some checks failed
Build the package using cmake then documentation / build (ubuntu-latest, 3.12) (push) Has been cancelled
Some checks failed
Build the package using cmake then documentation / build (ubuntu-latest, 3.12) (push) Has been cancelled
This commit is contained in:
31
.gitea/workflows/rh9-native.yml
Normal file
31
.gitea/workflows/rh9-native.yml
Normal 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
|
||||
|
Reference in New Issue
Block a user