Compare commits

...

2 Commits

Author SHA1 Message Date
Erki
f95d8026ba Migrate docs building also
All checks were successful
CI & Unit Tests / Unit-Tests (push) Successful in 46s
CI & Unit Tests / Docs (push) Successful in 17s
CI & Unit Tests / Unit-Tests (pull_request) Successful in 48s
CI & Unit Tests / Docs (pull_request) Successful in 9s
2024-02-04 23:15:52 +02:00
Erki
64269fc508 Change UT runner
All checks were successful
CI & Unit Tests / Unit-Tests (push) Successful in 47s
CI & Unit Tests / Docs (push) Successful in 1m48s
2024-02-04 22:34:55 +02:00

View File

@ -4,15 +4,10 @@ on: [push, pull_request]
jobs:
Unit-Tests:
runs-on: ubuntu-latest
runs-on: fedora-cpp
steps:
- uses: actions/checkout@v3
- name: Prepare environment
run: |
apt update
apt install -y --no-install-recommends build-essential cmake ninja-build
- name: Configure build
working-directory: ${{runner.workspace}}
run: |
@ -29,16 +24,10 @@ jobs:
working-directory: ${{runner.workspace}}/build
run: ctest . --output-on-failure
Docs:
runs-on: ubuntu-latest
runs-on: fedora-cpp
steps:
- uses: actions/checkout@v3
- name: Prepare environment
run: |
apt update
apt install -y --no-install-recommends build-essential cmake ninja-build doxygen python3-sphinx python3 python3-pip
pip3 install breathe
- name: Configure build
working-directory: ${{runner.workspace}}
run: |