chore: Don't use self-hosted runner tag (#2248)

This commit is contained in:
Ayaz Salikhov
2025-06-23 11:35:34 +01:00
committed by GitHub
parent 70f7635dda
commit 6cabe89601
2 changed files with 8 additions and 8 deletions

View File

@@ -15,7 +15,7 @@ env:
jobs: jobs:
build: build:
name: Build Clio / `libXRPL ${{ github.event.client_payload.version }}` name: Build Clio / `libXRPL ${{ github.event.client_payload.version }}`
runs-on: [self-hosted, heavy] runs-on: heavy
container: container:
image: ghcr.io/xrplf/clio-ci:latest image: ghcr.io/xrplf/clio-ci:latest
@@ -54,7 +54,7 @@ jobs:
run_tests: run_tests:
name: Run tests name: Run tests
needs: build needs: build
runs-on: [self-hosted, heavy] runs-on: heavy
container: container:
image: ghcr.io/xrplf/clio-ci:latest image: ghcr.io/xrplf/clio-ci:latest

View File

@@ -33,7 +33,7 @@ env:
jobs: jobs:
gcc-amd64: gcc-amd64:
name: Build and push GCC docker image (amd64) name: Build and push GCC docker image (amd64)
runs-on: [self-hosted, heavy] runs-on: heavy
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@@ -67,7 +67,7 @@ jobs:
gcc-arm64: gcc-arm64:
name: Build and push GCC docker image (arm64) name: Build and push GCC docker image (arm64)
runs-on: [self-hosted, heavy-arm64] runs-on: heavy-arm64
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@@ -101,7 +101,7 @@ jobs:
gcc-merge: gcc-merge:
name: Merge and push multi-arch GCC docker image name: Merge and push multi-arch GCC docker image
runs-on: [self-hosted, heavy] runs-on: heavy
needs: [gcc-amd64, gcc-arm64] needs: [gcc-amd64, gcc-arm64]
steps: steps:
@@ -150,7 +150,7 @@ jobs:
clang: clang:
name: Build and push Clang docker image name: Build and push Clang docker image
runs-on: [self-hosted, heavy] runs-on: heavy
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@@ -183,7 +183,7 @@ jobs:
tools: tools:
name: Build and push tools docker image name: Build and push tools docker image
runs-on: [self-hosted, heavy] runs-on: heavy
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@@ -210,7 +210,7 @@ jobs:
ci: ci:
name: Build and push CI docker image name: Build and push CI docker image
runs-on: [self-hosted, heavy] runs-on: heavy
needs: [gcc-merge, clang, tools] needs: [gcc-merge, clang, tools]
steps: steps: