Files
slsDetectorPackage/.gitea/workflows/rh8-native.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 18: cannot unmarshal !!map into []*model.Step
froejdh_e fadd54b9a9
Some checks failed
Build on RHEL9 / build (push) Failing after 0s
using checkout
2025-04-22 14:09:49 +02:00

29 lines
666 B
YAML

name: Build on RHEL8
on:
push:
workflow_dispatch:
permissions:
contents: read
jobs:
build:
runs-on: "ubuntu-latest"
container:
image: gitea.psi.ch/detectors-int/rhel8-detectors-dev
steps:
# workaround until actions/checkout@v4 is available for RH8
# - uses: actions/checkout@v4
steps:
- uses: actions/checkout@v3
- name: Build library
run: |
mkdir build && cd build
cmake .. -DAARE_PYTHON_BINDINGS=ON -DAARE_TESTS=ON -DPython_FIND_VIRTUALENV=FIRST
make -j 2
- name: C++ unit tests
working-directory: ${{gitea.workspace}}/build
run: ctest