From 011fece1fb0b09eec1d64bbeebf748c4b34a4d33 Mon Sep 17 00:00:00 2001 From: froejdh_e Date: Wed, 2 Apr 2025 10:39:46 +0200 Subject: [PATCH] building using rh9 container --- .gitea/workflows/rh9-native.yml | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 .gitea/workflows/rh9-native.yml diff --git a/.gitea/workflows/rh9-native.yml b/.gitea/workflows/rh9-native.yml new file mode 100644 index 0000000..7e5cb57 --- /dev/null +++ b/.gitea/workflows/rh9-native.yml @@ -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 +