From 158eb460bbb5f072bd5bde73fffdcaeb0237ac5d Mon Sep 17 00:00:00 2001 From: Shiming Zhang Date: Wed, 16 Apr 2025 14:27:25 +0800 Subject: [PATCH] Move crproxy to opencidn --- .github/workflows/sync-image.yml | 6 +++--- .github/workflows/sync-runner.yml | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/sync-image.yml b/.github/workflows/sync-image.yml index c9343c8..c0fe3ad 100644 --- a/.github/workflows/sync-image.yml +++ b/.github/workflows/sync-image.yml @@ -50,9 +50,9 @@ jobs: SYNC_IMAGE="$(./hack/real-image.sh "${ORIGIN_IMAGE}")" echo "sync_image=${SYNC_IMAGE}" >> $GITHUB_OUTPUT - - name: Set up crproxy + - name: Set up runner run: | - wget https://github.com/DaoCloud/crproxy/releases/download/v0.13.0-alpha.174/crproxy_linux_amd64 -O /usr/local/bin/crproxy && chmod +x /usr/local/bin/crproxy + wget https://github.com/OpenCIDN/OpenCIDN/releases/download/v0.0.9/runner_linux_amd64 -O /usr/local/bin/runner && chmod +x /usr/local/bin/runner - name: Create message to queue id: get-message @@ -95,6 +95,6 @@ jobs: fi ) & - /usr/local/bin/crproxy cluster runner ${{ secrets.NEW_STORAGE_ARGS }} --user '${{ secrets.OCI_USER }}' --queue-token '${{ secrets.QUEUE_TOKEN }}' --queue-url https://queue.m.daocloud.io/apis/v1 --duration 10s --retry=3 --retry-interval=2s & + /usr/local/bin/runner ${{ secrets.NEW_STORAGE_ARGS }} --user '${{ secrets.OCI_USER }}' --queue-token '${{ secrets.QUEUE_TOKEN }}' --queue-url https://queue.m.daocloud.io/apis/v1 --duration 10s --retry=3 --retry-interval=2s & wait diff --git a/.github/workflows/sync-runner.yml b/.github/workflows/sync-runner.yml index c3d00fb..0a1cf8b 100644 --- a/.github/workflows/sync-runner.yml +++ b/.github/workflows/sync-runner.yml @@ -11,10 +11,10 @@ jobs: runs-on: ubuntu-latest if: github.repository == 'DaoCloud/public-image-mirror' steps: - - name: Set up crproxy + - name: Set up runner run: | - wget https://github.com/DaoCloud/crproxy/releases/download/v0.13.0-alpha.174/crproxy_linux_amd64 -O /usr/local/bin/crproxy && chmod +x /usr/local/bin/crproxy + wget https://github.com/OpenCIDN/OpenCIDN/releases/download/v0.0.9/runner_linux_amd64 -O /usr/local/bin/runner && chmod +x /usr/local/bin/runner - name: Sync Runner run: | - /usr/local/bin/crproxy cluster runner ${{ secrets.NEW_STORAGE_ARGS }} --user '${{ secrets.OCI_USER }}' --queue-token '${{ secrets.QUEUE_TOKEN }}' --queue-url https://queue.m.daocloud.io/apis/v1 --duration 2h --retry=3 --retry-interval=2s + /usr/local/bin/runner ${{ secrets.NEW_STORAGE_ARGS }} --user '${{ secrets.OCI_USER }}' --queue-token '${{ secrets.QUEUE_TOKEN }}' --queue-url https://queue.m.daocloud.io/apis/v1 --duration 2h --retry=3 --retry-interval=2s