From 851ea56f27abdab2e95dee4916d46c47c274d2db Mon Sep 17 00:00:00 2001 From: Andrew Gable Date: Fri, 2 Jun 2023 15:59:59 -0600 Subject: [PATCH] Revert ubunutu large runner testing --- .github/actionlint.yaml | 1 - .github/scripts/validateActionsAndWorkflows.sh | 2 +- .github/workflows/platformDeploy.yml | 6 ++---- .github/workflows/testBuild.yml | 6 ++---- 4 files changed, 5 insertions(+), 10 deletions(-) diff --git a/.github/actionlint.yaml b/.github/actionlint.yaml index b41600837e53..d2a8b4a0b9b5 100644 --- a/.github/actionlint.yaml +++ b/.github/actionlint.yaml @@ -2,5 +2,4 @@ self-hosted-runner: labels: - ubuntu-20.04-64core - - ubuntu-latest-16-cores - macos-12-xl diff --git a/.github/scripts/validateActionsAndWorkflows.sh b/.github/scripts/validateActionsAndWorkflows.sh index e920634b2484..8d186ea51a44 100755 --- a/.github/scripts/validateActionsAndWorkflows.sh +++ b/.github/scripts/validateActionsAndWorkflows.sh @@ -84,7 +84,7 @@ else fi info 'Linting workflows...' -./actionlint -color -ignore '"runs-on" section must be sequence node but got mapping node with "!!map" tag' || EXIT_CODE=1 +./actionlint -color || EXIT_CODE=1 if [[ "$EXIT_CODE" == 0 ]]; then success 'Workflows passed actionlint!' fi diff --git a/.github/workflows/platformDeploy.yml b/.github/workflows/platformDeploy.yml index 7ef0202dd64e..59c35d055c75 100644 --- a/.github/workflows/platformDeploy.yml +++ b/.github/workflows/platformDeploy.yml @@ -29,8 +29,7 @@ jobs: name: Build and deploy Android needs: validateActor if: ${{ fromJSON(needs.validateActor.outputs.IS_DEPLOYER) }} - runs-on: - labels: ubuntu-latest-16-cores + runs-on: ubuntu-latest steps: # This action checks-out the repository, so the workflow can access it. - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 @@ -240,8 +239,7 @@ jobs: name: Build and deploy Web needs: validateActor if: ${{ fromJSON(needs.validateActor.outputs.IS_DEPLOYER) }} - runs-on: - labels: ubuntu-latest-16-cores + runs-on: ubuntu-latest steps: # This action checks-out the repository, so the workflow can access it. - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 diff --git a/.github/workflows/testBuild.yml b/.github/workflows/testBuild.yml index b1bb192ef555..d239cea1dec2 100644 --- a/.github/workflows/testBuild.yml +++ b/.github/workflows/testBuild.yml @@ -62,8 +62,7 @@ jobs: name: Build and deploy Android for testing needs: [validateActor, getBranchRef] if: ${{ fromJSON(needs.validateActor.outputs.READY_TO_BUILD) }} - runs-on: - labels: ubuntu-latest-16-cores + runs-on: ubuntu-latest env: PULL_REQUEST_NUMBER: ${{ github.event.number || github.event.inputs.PULL_REQUEST_NUMBER }} steps: @@ -233,8 +232,7 @@ jobs: if: ${{ fromJSON(needs.validateActor.outputs.READY_TO_BUILD) }} env: PULL_REQUEST_NUMBER: ${{ github.event.number || github.event.inputs.PULL_REQUEST_NUMBER }} - runs-on: - labels: ubuntu-latest-16-cores + runs-on: ubuntu-latest steps: - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 with: