From ca0bc767fee9c10532754c874de5697722c43986 Mon Sep 17 00:00:00 2001 From: Michael Legleux Date: Fri, 4 Apr 2025 19:24:31 -0700 Subject: [PATCH] fix: Use the build image from ghcr.io (#5390) The ci pipelines are constantly hitting Docker Hub's public rate limiting since increasing the number of jobs we're running. This change switches over to images hosted in GitHub's registry. --- .github/workflows/doxygen.yml | 2 +- .github/workflows/libxrpl.yml | 2 +- .github/workflows/nix.yml | 10 +++++----- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/doxygen.yml b/.github/workflows/doxygen.yml index e2265d1b83..0693308ef0 100644 --- a/.github/workflows/doxygen.yml +++ b/.github/workflows/doxygen.yml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest permissions: contents: write - container: rippleci/rippled-build-ubuntu:aaf5e3e + container: ghcr.io/xrplf/rippled-build-ubuntu:aaf5e3e steps: - name: checkout uses: actions/checkout@v4 diff --git a/.github/workflows/libxrpl.yml b/.github/workflows/libxrpl.yml index 2834595e3a..92deff7810 100644 --- a/.github/workflows/libxrpl.yml +++ b/.github/workflows/libxrpl.yml @@ -20,7 +20,7 @@ jobs: version: ${{ steps.version.outputs.version }} channel: ${{ steps.channel.outputs.channel }} runs-on: [self-hosted, heavy] - container: rippleci/rippled-build-ubuntu:aaf5e3e + container: ghcr.io/xrplf/rippled-build-ubuntu:aaf5e3e steps: - name: Wait for essential checks to succeed uses: lewagon/wait-on-check-action@v1.3.4 diff --git a/.github/workflows/nix.yml b/.github/workflows/nix.yml index c4507c8440..abae2ee84a 100644 --- a/.github/workflows/nix.yml +++ b/.github/workflows/nix.yml @@ -62,7 +62,7 @@ jobs: cc: /usr/bin/clang-14 cxx: /usr/bin/clang++-14 runs-on: [self-hosted, heavy] - container: rippleci/rippled-build-ubuntu:aaf5e3e + container: ghcr.io/xrplf/rippled-build-ubuntu:aaf5e3e env: build_dir: .build steps: @@ -124,7 +124,7 @@ jobs: - "-Dunity=ON" needs: dependencies runs-on: [self-hosted, heavy] - container: rippleci/rippled-build-ubuntu:aaf5e3e + container: ghcr.io/xrplf/rippled-build-ubuntu:aaf5e3e env: build_dir: .build steps: @@ -178,7 +178,7 @@ jobs: - "-DUNIT_TEST_REFERENCE_FEE=1000" needs: dependencies runs-on: [self-hosted, heavy] - container: rippleci/rippled-build-ubuntu:aaf5e3e + container: ghcr.io/xrplf/rippled-build-ubuntu:aaf5e3e env: build_dir: .build steps: @@ -229,7 +229,7 @@ jobs: - Debug needs: dependencies runs-on: [self-hosted, heavy] - container: rippleci/rippled-build-ubuntu:aaf5e3e + container: ghcr.io/xrplf/rippled-build-ubuntu:aaf5e3e env: build_dir: .build steps: @@ -303,7 +303,7 @@ jobs: conan: needs: dependencies runs-on: [self-hosted, heavy] - container: rippleci/rippled-build-ubuntu:aaf5e3e + container: ghcr.io/xrplf/rippled-build-ubuntu:aaf5e3e env: build_dir: .build configuration: Release