From 282fef2ebf7d7e83c0e0579f8ee64b49f258ab7c Mon Sep 17 00:00:00 2001 From: Vasili Pascal Date: Thu, 26 Mar 2026 11:06:33 +0200 Subject: [PATCH] Change CI runner from ubuntu-latest to self-hosted --- .github/workflows/ci.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 49497fa..7065b5d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,8 @@ on: jobs: build-and-test: name: Build & Test (features=${{ matrix.features }}) - runs-on: ubuntu-latest + #runs-on: ubuntu-latest + runs-on: self-hosted strategy: fail-fast: false matrix: @@ -85,7 +86,8 @@ jobs: build-release-binaries: name: Build Release Binaries (Linux x86_64) - runs-on: ubuntu-latest + #runs-on: ubuntu-latest + runs-on: self-hosted needs: build-and-test if: github.ref == 'refs/heads/production' || github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/') strategy: @@ -172,7 +174,8 @@ jobs: docker-build: name: Docker Build & Push (branches/tags) - runs-on: ubuntu-latest + #runs-on: ubuntu-latest + runs-on: self-hosted needs: build-and-test if: | github.ref == 'refs/heads/production' ||