From 28530a7e4a2e3d3b752e249a3dd038226c623c8e Mon Sep 17 00:00:00 2001 From: Alan Luong Date: Wed, 9 Oct 2024 14:58:55 -0400 Subject: [PATCH] use runs-on for fullnode-sync workflows (#14782) --- .github/actions/fullnode-sync/action.yaml | 5 ----- .github/workflows/run-fullnode-sync.yaml | 2 +- 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/actions/fullnode-sync/action.yaml b/.github/actions/fullnode-sync/action.yaml index 27bd18ae67eef..213f3e7ca594a 100644 --- a/.github/actions/fullnode-sync/action.yaml +++ b/.github/actions/fullnode-sync/action.yaml @@ -27,11 +27,6 @@ inputs: runs: using: composite steps: - - name: Install Dependencies - shell: bash - run: | - echo "${HOME}/bin/" >> $GITHUB_PATH # default INSTALL_DIR to path - scripts/dev_setup.sh -b # Install dependencies - name: Run fullnode sync shell: bash run: | diff --git a/.github/workflows/run-fullnode-sync.yaml b/.github/workflows/run-fullnode-sync.yaml index 82295e882bc77..c4c2ce1e2d087 100644 --- a/.github/workflows/run-fullnode-sync.yaml +++ b/.github/workflows/run-fullnode-sync.yaml @@ -57,7 +57,7 @@ on: jobs: fullnode-sync: - runs-on: medium-perf-docker-with-local-ssd + runs-on: runs-on,cpu=16,ram=64,family=m5ad,image=aptos-ubuntu-x64,run-id=${{ github.run_id }} timeout-minutes: ${{ inputs.TIMEOUT_MINUTES || 300 }} # the default run is 300 minutes (5 hours). Specified here because workflow_dispatch uses string rather than number steps: - uses: actions/checkout@v4