mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-09 20:27:58 -05:00
substitute old for new runner (#595)
This commit is contained in:
6
.github/workflows/all-tools.yml
vendored
6
.github/workflows/all-tools.yml
vendored
@@ -16,7 +16,7 @@ on:
|
||||
|
||||
jobs:
|
||||
changes:
|
||||
runs-on: [self-hosted, ubuntu-20.04, X64, small]
|
||||
runs-on: gha-runner-scale-set-ubuntu-22.04-amd64-small
|
||||
name: Filter commit changes
|
||||
outputs:
|
||||
all-tools: ${{ steps.filter.outputs['all-tools'] }}
|
||||
@@ -39,7 +39,7 @@ jobs:
|
||||
uses: ./.github/workflows/reuse-store-image-name-and-tags.yml
|
||||
|
||||
check_image_tags_exist:
|
||||
runs-on: [self-hosted, ubuntu-20.04, X64, small]
|
||||
runs-on: gha-runner-scale-set-ubuntu-22.04-amd64-small
|
||||
name: Check image tags exist
|
||||
needs: [ changes, store_image_name_and_tags ]
|
||||
if: ${{ needs.changes.outputs['all-tools'] == 'false' }}
|
||||
@@ -53,7 +53,7 @@ jobs:
|
||||
image_name: consensys/linea-alltools
|
||||
|
||||
all-tools-tag-only:
|
||||
runs-on: [self-hosted, ubuntu-20.04, X64, small]
|
||||
runs-on: gha-runner-scale-set-ubuntu-22.04-amd64-small
|
||||
name: All tools tag only
|
||||
needs: [ changes, store_image_name_and_tags, check_image_tags_exist ]
|
||||
if: ${{ github.event_name != 'pull_request' && needs.changes.outputs['all-tools'] == 'false' }}
|
||||
|
||||
2
.github/workflows/bridge-ui-e2e-tests.yml
vendored
2
.github/workflows/bridge-ui-e2e-tests.yml
vendored
@@ -16,7 +16,7 @@ on:
|
||||
|
||||
jobs:
|
||||
run-e2e-tests:
|
||||
runs-on: [self-hosted, ubuntu-20.04, X64, medium]
|
||||
runs-on: gha-runner-scale-set-ubuntu-22.04-amd64-med
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
4
.github/workflows/cache-docker-images.yml
vendored
4
.github/workflows/cache-docker-images.yml
vendored
@@ -9,7 +9,7 @@ on:
|
||||
|
||||
jobs:
|
||||
check-dockerhub-secrets-present:
|
||||
runs-on: [self-hosted, ubuntu-20.04, X64, small]
|
||||
runs-on: gha-runner-scale-set-ubuntu-22.04-amd64-small
|
||||
env:
|
||||
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
@@ -24,7 +24,7 @@ jobs:
|
||||
changes:
|
||||
needs: [ check-dockerhub-secrets-present ]
|
||||
if: ${{ always() && needs.check-dockerhub-secrets-present.outputs.secrets_present == 'true' }}
|
||||
runs-on: [self-hosted, ubuntu-20.04, X64, small]
|
||||
runs-on: gha-runner-scale-set-ubuntu-22.04-amd64-small
|
||||
name: Filter commit changes
|
||||
outputs:
|
||||
cache_images: ${{ steps.filter.outputs.cache_images }}
|
||||
|
||||
2
.github/workflows/codeql.yml
vendored
2
.github/workflows/codeql.yml
vendored
@@ -25,7 +25,7 @@ on:
|
||||
jobs:
|
||||
analyze:
|
||||
name: Analyze
|
||||
runs-on: [self-hosted, ubuntu-20.04, X64, medium]
|
||||
runs-on: gha-runner-scale-set-ubuntu-22.04-amd64-med
|
||||
permissions:
|
||||
actions: read
|
||||
contents: read
|
||||
|
||||
2
.github/workflows/load-test.yml
vendored
2
.github/workflows/load-test.yml
vendored
@@ -27,7 +27,7 @@ concurrency:
|
||||
|
||||
jobs:
|
||||
run-load-test:
|
||||
runs-on: [self-hosted, ubuntu-20.04, X64, small]
|
||||
runs-on: gha-runner-scale-set-ubuntu-22.04-amd64-small
|
||||
name: Run Load Test
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
||||
6
.github/workflows/main.yml
vendored
6
.github/workflows/main.yml
vendored
@@ -11,7 +11,7 @@ jobs:
|
||||
uses: ./.github/workflows/reuse-store-image-name-and-tags.yml
|
||||
|
||||
filter-commit-changes:
|
||||
runs-on: [self-hosted, ubuntu-20.04, X64, small]
|
||||
runs-on: gha-runner-scale-set-ubuntu-22.04-amd64-small
|
||||
name: Filter commit changes
|
||||
outputs:
|
||||
coordinator: ${{ steps.filter.outputs.coordinator }}
|
||||
@@ -148,7 +148,7 @@ jobs:
|
||||
secrets: inherit
|
||||
|
||||
manual-docker-build-and-e2e-tests:
|
||||
runs-on: [self-hosted, ubuntu-20.04, X64, small]
|
||||
runs-on: gha-runner-scale-set-ubuntu-22.04-amd64-small
|
||||
needs: [ store-image-name-and-tags, filter-commit-changes, check-and-tag-images ]
|
||||
if: ${{ needs.filter-commit-changes.outputs.has-changes-requiring-build == 'true' }}
|
||||
environment: ${{ github.ref != 'refs/heads/main' && 'docker-build-and-e2e' || '' }}
|
||||
@@ -245,7 +245,7 @@ jobs:
|
||||
cleanup-deployments:
|
||||
needs: [ run-e2e-tests, run-e2e-tests-geth-tracing ]
|
||||
if: ${{ always() }}
|
||||
runs-on: [self-hosted, ubuntu-20.04, X64, small]
|
||||
runs-on: gha-runner-scale-set-ubuntu-22.04-amd64-small
|
||||
steps:
|
||||
- uses: strumwolf/delete-deployment-environment@v3
|
||||
with:
|
||||
|
||||
2
.github/workflows/postman-testing.yml
vendored
2
.github/workflows/postman-testing.yml
vendored
@@ -9,7 +9,7 @@ concurrency:
|
||||
|
||||
jobs:
|
||||
run-tests:
|
||||
runs-on: [self-hosted, ubuntu-22.04, X64, large]
|
||||
runs-on: gha-runner-scale-set-ubuntu-22.04-amd64-large
|
||||
name: Postman & SDK tests
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
||||
@@ -49,7 +49,7 @@ concurrency:
|
||||
|
||||
jobs:
|
||||
check_image_tags_exist:
|
||||
runs-on: [self-hosted, ubuntu-20.04, X64, small]
|
||||
runs-on: gha-runner-scale-set-ubuntu-22.04-amd64-small
|
||||
name: Check image tags exist
|
||||
outputs:
|
||||
last_commit_tag_exists_coordinator: ${{ steps.check_image_tags_exist_coordinator.outputs.last_commit_tag_exists }}
|
||||
@@ -107,7 +107,7 @@ jobs:
|
||||
image_name: consensys/linea-transaction-exclusion-api
|
||||
|
||||
image_tag_push:
|
||||
runs-on: [self-hosted, ubuntu-20.04, X64, small]
|
||||
runs-on: gha-runner-scale-set-ubuntu-22.04-amd64-small
|
||||
if: ${{ github.ref == 'refs/heads/main' }}
|
||||
name: Tag and push images
|
||||
needs: [ check_image_tags_exist ]
|
||||
|
||||
@@ -15,7 +15,7 @@ concurrency:
|
||||
|
||||
jobs:
|
||||
store_image_name_and_tags:
|
||||
runs-on: [self-hosted, ubuntu-20.04, X64, small]
|
||||
runs-on: gha-runner-scale-set-ubuntu-22.04-amd64-small
|
||||
name: Compute version tags
|
||||
env:
|
||||
# REF_NAME: ${{ github.ref_name }}
|
||||
|
||||
2
.github/workflows/run-smc-tests.yml
vendored
2
.github/workflows/run-smc-tests.yml
vendored
@@ -86,7 +86,7 @@ jobs:
|
||||
token: ${{ secrets.CODECOV_TOKEN }}
|
||||
|
||||
solidity-format-check:
|
||||
runs-on: [self-hosted, ubuntu-20.04, X64, small]
|
||||
runs-on: gha-runner-scale-set-ubuntu-22.04-amd64-small
|
||||
name: Solidity format check
|
||||
steps:
|
||||
- name: Checkout
|
||||
|
||||
2
.github/workflows/security-report-to-csv.yml
vendored
2
.github/workflows/security-report-to-csv.yml
vendored
@@ -2,7 +2,7 @@ name: Export Security Report to CSV
|
||||
on: workflow_dispatch
|
||||
jobs:
|
||||
data_gathering:
|
||||
runs-on: [self-hosted, ubuntu-20.04, X64, small]
|
||||
runs-on: gha-runner-scale-set-ubuntu-22.04-amd64-small
|
||||
steps:
|
||||
- name: CSV export
|
||||
uses: advanced-security/ghas-to-csv@v2
|
||||
|
||||
2
.github/workflows/stale.yml
vendored
2
.github/workflows/stale.yml
vendored
@@ -11,7 +11,7 @@ permissions:
|
||||
|
||||
jobs:
|
||||
stale:
|
||||
runs-on: [self-hosted, ubuntu-20.04, X64, small]
|
||||
runs-on: gha-runner-scale-set-ubuntu-22.04-amd64-small
|
||||
steps:
|
||||
- uses: actions/stale@v8
|
||||
with:
|
||||
|
||||
@@ -9,7 +9,7 @@ on:
|
||||
|
||||
jobs:
|
||||
check:
|
||||
runs-on: [self-hosted, ubuntu-20.04, X64, small]
|
||||
runs-on: gha-runner-scale-set-ubuntu-22.04-amd64-small
|
||||
|
||||
steps:
|
||||
- name: Checkout code
|
||||
|
||||
Reference in New Issue
Block a user