From 284e10498832b46fa440e6f2a7690e2dc3dd0078 Mon Sep 17 00:00:00 2001 From: Saikrishna Bairamoni <84093461+SaikrishnaBairamoni@users.noreply.github.com> Date: Thu, 5 Sep 2024 15:36:54 -0400 Subject: [PATCH] Update GitHub Actions Runner size (#240) # PR Details This PR updates the runner size to 16 cores in our current CI workflow to reduce reruns by the development team when builds or tests fail, which consumes more resource minutes. ## Description ## Related GitHub Issue ## Related Jira Key ## Motivation and Context ## How Has This Been Tested? ## Types of changes - [ ] Defect fix (non-breaking change that fixes an issue) - [ ] New feature (non-breaking change that adds functionality) - [ ] Breaking change (fix or feature that cause existing functionality to change) ## Checklist: - [ ] I have added any new packages to the sonar-scanner.properties file - [ ] My change requires a change to the documentation. - [ ] I have updated the documentation accordingly. - [ ] I have read the [**CONTRIBUTING**](https://github.com/usdot-fhwa-stol/carma-platform/blob/develop/Contributing.md) document. - [ ] I have added tests to cover my changes. - [ ] All new and existing tests passed. --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2e28963..a44f579 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,8 @@ jobs: run: shell: bash working-directory: "/opt/carma/" - runs-on: ubuntu-latest + # Specify the runner environment + runs-on: ubuntu-latest-16-cores container: image: ${{ needs.determine_docker_org_and_tag.outputs.docker_organization }}/carma-base:${{ needs.determine_docker_org_and_tag.outputs.docker_image_tag }} env: @@ -69,4 +70,4 @@ jobs: uses: usdot-fhwa-stol/actions/sonar-scanner@main with: sonar-token: ${{ secrets.SONAR_TOKEN }} - working-dir: "/opt/carma/src/${{ github.event.repository.name }}" \ No newline at end of file + working-dir: "/opt/carma/src/${{ github.event.repository.name }}"