Skip to content

Commit

Permalink
Update CI to use faster runners (#1043)
Browse files Browse the repository at this point in the history
  • Loading branch information
GleasonK authored Feb 2, 2023
1 parent aad57d1 commit 56c85b0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/buildAndTestCMake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
STABLEHLO_PYTHON_BUILD_DIR: "stablehlo-python-build"
strategy:
fail-fast: false
runs-on: ubuntu-22.04
runs-on: ubuntu-22.04-64core

steps:
- name: Checkout StableHLO
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/buildBazel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
bazel-build:
strategy:
fail-fast: false
runs-on: ubuntu-22.04
runs-on: ubuntu-22.04-64core

steps:
- name: Checkout StableHLO
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
clang-format:
# This job can only be run on pull_request since GITHUB_BASE_REF is only set on PR.
if: "github.event_name == 'pull_request'"
runs-on: ubuntu-latest
runs-on: ubuntu-22.04-64core
steps:
- name: Checking out repository
uses: actions/checkout@v2
Expand All @@ -35,7 +35,7 @@ jobs:
whitespace-checks:
# This job can only be run on pull_request since GITHUB_BASE_REF is only set on PR.
if: "github.event_name == 'pull_request'"
runs-on: ubuntu-latest
runs-on: ubuntu-22.04-64core
steps:
- name: Checking out repository
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/markdown_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ on:

jobs:
markdown-lint:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04-64core
steps:
- name: Checking out repository
uses: actions/checkout@v3
Expand Down

0 comments on commit 56c85b0

Please sign in to comment.