From 64269fc508b7fddce699d9fbf293183113960932 Mon Sep 17 00:00:00 2001 From: Erki Date: Sun, 4 Feb 2024 22:34:55 +0200 Subject: [PATCH 1/2] Change UT runner --- .gitea/workflows/ci.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index c689ae5..1839f04 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -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: | -- 2.47.2 From f95d8026ba75de32d7eb358499dc75066a1cff65 Mon Sep 17 00:00:00 2001 From: Erki Date: Sun, 4 Feb 2024 23:15:52 +0200 Subject: [PATCH 2/2] Migrate docs building also --- .gitea/workflows/ci.yml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 1839f04..be0aa43 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -24,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: | -- 2.47.2