From c53eae43f9c0e603b3e0ef327a683abdefaee593 Mon Sep 17 00:00:00 2001 From: Michael Eischer Date: Fri, 29 May 2026 10:47:51 +0200 Subject: [PATCH] switch test pipeline to public runners --- .github/workflows/tests.yaml | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 45223675..9142549a 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -5,7 +5,7 @@ on: jobs: test: - runs-on: self-hosted + runs-on: ubuntu-latest permissions: contents: read env: @@ -25,18 +25,6 @@ jobs: git checkout -b "$branch" || true - name: Install earthly run: "sudo /bin/sh -c 'curl -o /usr/local/bin/earthly -L https://github.com/earthly/earthly/releases/download/v0.8.16/earthly-linux-amd64 && chmod +x /usr/local/bin/earthly'" - - name: Configure pull-through-cache - run: | - mkdir ~/.earthly - cat < ~/.earthly/config.yml - global: - buildkit_additional_config: | - [registry."docker.io"] - mirrors = ["yawol-registry-docker-registry.yawol-registry.svc:5000"] - [registry."yawol-registry-docker-registry.yawol-registry.svc:5000"] - http = true - insecure = true - EOF - name: Earthly version run: earthly --version - name: Run Tests