using checkout
Some checks failed
Build on RHEL9 / build (push) Failing after 0s

This commit is contained in:
froejdh_e 2025-04-22 14:09:49 +02:00
parent 1d5da63089
commit fadd54b9a9
2 changed files with 6 additions and 7 deletions

View File

@ -15,12 +15,8 @@ jobs:
steps:
# workaround until actions/checkout@v4 is available for RH8
# - uses: actions/checkout@v4
- name: Clone repository
run: |
echo Cloning ${{ github.ref_name }}
git clone https://${{secrets.GITHUB_TOKEN}}@gitea.psi.ch/${{ github.repository }}.git --branch=${{ github.ref_name }} .
steps:
- uses: actions/checkout@v3
- name: Build library
run: |

View File

@ -19,6 +19,9 @@ jobs:
- name: Build library
run: |
mkdir build && cd build
cmake ..
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