Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Use arm64 runners #1955

Merged
merged 1 commit into from
Jan 23, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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-24.04-arm
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-24.04-arm
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-24.04-arm
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-24.04-arm
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-24.04-arm
strategy:
matrix:
ruby:
Expand All @@ -48,7 +48,7 @@ jobs:
- run: NO_COVERAGE=true bundle exec rake ${{ matrix.task }}

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

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

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

rspec4:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04-arm
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-24.04-arm
permissions:
actions: write
contents: write
Expand Down
Loading