From 7969a0d8c08f697a84b87e505e1d2ecb35c4ff55 Mon Sep 17 00:00:00 2001 From: penguin Date: Sat, 20 Dec 2025 13:36:13 -0600 Subject: [PATCH] ci: use generic label 'gentoo' which maps to any runner capable of running gentoo jobs --- .gitea/workflows/gentoo-utils.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitea/workflows/gentoo-utils.yml b/.gitea/workflows/gentoo-utils.yml index 968bac4..9888141 100644 --- a/.gitea/workflows/gentoo-utils.yml +++ b/.gitea/workflows/gentoo-utils.yml @@ -89,7 +89,7 @@ jobs: image_tag: ${{ steps.image-changes.outputs.image_tag }} build: - runs-on: brutalisk + runs-on: gentoo env: CC: 'clang' CXX: 'clang++' @@ -108,7 +108,7 @@ jobs: # FIXME: Currently this rebuilds everything. Instead we should bring over the build dir from the build job. This will come in handy # when we have multiple build targets and configs. What we have currently is fine until we get lots of builds going test: - runs-on: brutalisk + runs-on: gentoo env: CC: 'clang' CXX: 'clang++' @@ -126,7 +126,7 @@ jobs: ninja test -C build fuzz: - runs-on: brutalisk + runs-on: gentoo env: CC: 'clang' CXX: 'clang++' @@ -158,7 +158,7 @@ jobs: continue-on-error: true check-format: - runs-on: brutalisk + runs-on: gentoo needs: [build-oci-image] container: image: ${{ vars.REGISTRY_URL }}/${{ gitea.repository }}:${{ needs.build-oci-image.outputs.image_tag }} @@ -173,7 +173,7 @@ jobs: ninja rustfmt -C build docs: - runs-on: brutalisk + runs-on: gentoo needs: [build-oci-image] container: image: ${{ vars.REGISTRY_URL }}/${{ gitea.repository }}:${{ needs.build-oci-image.outputs.image_tag }} @@ -187,7 +187,7 @@ jobs: ninja rustdoc -C docs grep: - runs-on: brutalisk + runs-on: gentoo needs: [build-oci-image] container: image: ${{ vars.REGISTRY_URL }}/${{ gitea.repository }}:${{ needs.build-oci-image.outputs.image_tag }}