Skip to content

Commit

Permalink
CI: Use arm64 runners
Browse files Browse the repository at this point in the history
  • Loading branch information
bquorning committed Sep 4, 2024
1 parent 74d7837 commit 42b81bc
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/codespell.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ concurrency:
jobs:
codespell:
name: CodeSpell
runs-on: ubuntu-latest
runs-on: [ubuntu-latest, arm64]
steps:
- uses: actions/checkout@v4
- name: CodeSpell
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/linting.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ concurrency:
jobs:
yamllint:
name: Yamllint
runs-on: ubuntu-latest
runs-on: [ubuntu-latest, arm64]
steps:
- uses: actions/checkout@v4
- name: Yamllint
Expand All @@ -20,7 +20,7 @@ jobs:
GITHUB_ACCESS_TOKEN: ${{ secrets.GITHUB_TOKEN }}
mdformat:
name: Mdformat
runs-on: ubuntu-latest
runs-on: [ubuntu-latest, arm64]
steps:
- uses: actions/checkout@v4
- name: Mdformat
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ concurrency:

jobs:
confirm_config_and_documentation:
runs-on: ubuntu-latest
runs-on: [ubuntu-latest, arm64]
name: Confirm config and documentation
steps:
- uses: actions/checkout@v4
Expand All @@ -23,7 +23,7 @@ jobs:
- run: bundle exec rake confirm_config documentation_syntax_check confirm_documentation

main:
runs-on: ubuntu-latest
runs-on: [ubuntu-latest, arm64]
strategy:
matrix:
ruby:
Expand All @@ -47,7 +47,7 @@ jobs:
- run: NO_COVERAGE=true bundle exec rake ${{ matrix.task }}

coverage:
runs-on: ubuntu-latest
runs-on: [ubuntu-latest, arm64]
name: "Test coverage"
steps:
- uses: actions/checkout@v4
Expand All @@ -58,7 +58,7 @@ jobs:
- run: bundle exec rake spec

edge-rubocop:
runs-on: ubuntu-latest
runs-on: [ubuntu-latest, arm64]
strategy:
matrix:
task:
Expand All @@ -79,7 +79,7 @@ jobs:
- run: NO_COVERAGE=true bundle exec rake ${{ matrix.task }}

oldest-rubocop:
runs-on: ubuntu-latest
runs-on: [ubuntu-latest, arm64]
strategy:
matrix:
task:
Expand All @@ -100,7 +100,7 @@ jobs:
- run: NO_COVERAGE=true bundle exec rake ${{ matrix.task }}

rspec4:
runs-on: ubuntu-latest
runs-on: [ubuntu-latest, arm64]
name: RSpec 4
steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
publish:
name: Publish to RubyGems
runs-on: ubuntu-latest
runs-on: [ubuntu-latest, arm64]
permissions:
contents: write
id-token: write
Expand Down

0 comments on commit 42b81bc

Please sign in to comment.