Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-publish-eth-rpc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

build_docker:
name: Build docker images
runs-on: parity-large
runs-on: parity-large-test
needs: [set-variables]
env:
VERSION: ${{ needs.set-variables.outputs.VERSION }}
Expand All @@ -58,7 +58,7 @@ jobs:

build_push_docker:
name: Build and push docker images
runs-on: parity-large
runs-on: parity-large-test
if: github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/heads/stable')
needs: [set-variables]
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-getting-started.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
container: opensuse/tumbleweed
template: solochain
shell: sh
runs-on: parity-large
runs-on: parity-large-test
container: ${{ matrix.container }}:latest
steps:
# A minimal amount of prerequisites required before we can run the actual getting-started script,
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cmd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ jobs:
if [[ $BODY == "bench"* ]]; then
echo "RUNNER=parity-weights" >> $GITHUB_OUTPUT
elif [[ $BODY == "update-ui"* ]]; then
echo "RUNNER=parity-large" >> $GITHUB_OUTPUT
echo "RUNNER=parity-large-test" >> $GITHUB_OUTPUT
else
echo "RUNNER=ubuntu-latest" >> $GITHUB_OUTPUT
fi
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-build-binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
INPUT_BINARY: ${{ inputs.binary }}
run: |
if [[ "$INPUT_BINARY" == "polkadot-parachain" ]]; then
echo "RUNNER=parity-large" >> $GITHUB_OUTPUT
echo "RUNNER=parity-large-test" >> $GITHUB_OUTPUT
else
echo "RUNNER=ubuntu-latest" >> $GITHUB_OUTPUT
fi
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/reusable-preflight.yml
Original file line number Diff line number Diff line change
Expand Up @@ -164,13 +164,13 @@ jobs:
#
# Run merge queues on persistent runners
if [[ $GITHUB_REF_NAME == *"gh-readonly-queue"* ]]; then
echo "RUNNER=parity-large-persistent" >> $GITHUB_OUTPUT
echo "RUNNER=parity-large-persistent-test" >> $GITHUB_OUTPUT
echo "RUNNER_OLDLINUX=parity-oldlinux-persistent" >> $GITHUB_OUTPUT
echo "RUNNER_NEW=parity-large-persistent-test" >> $GITHUB_OUTPUT
echo "RUNNER_OLDLINUX_NEW=parity-oldlinux-persistent-new" >> $GITHUB_OUTPUT
else
echo "RUNNER=parity-large" >> $GITHUB_OUTPUT
echo "RUNNER_OLDLINUX=parity-oldlinux" >> $GITHUB_OUTPUT
echo "RUNNER=parity-large-test" >> $GITHUB_OUTPUT
echo "RUNNER_OLDLINUX=parity-oldlinux-test" >> $GITHUB_OUTPUT
echo "RUNNER_NEW=parity-large-new" >> $GITHUB_OUTPUT
echo "RUNNER_OLDLINUX_NEW=parity-oldlinux-new" >> $GITHUB_OUTPUT
fi
Expand Down
Loading