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

Fix OS labels to represent correct chip arch #42

Merged
merged 5 commits into from
May 10, 2024
Merged
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
10 changes: 5 additions & 5 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ on:

jobs:

intel:
name: Validate intel
runs-on: macos-latest
x86_64:
name: Validate x86_64
runs-on: macos-12
steps:
- uses: actions/checkout@v3
- name: test in the installations
Expand All @@ -29,9 +29,9 @@ jobs:
run:
redis-cli ping

m1:
arm64:
name: Validate arm64
runs-on: macos-14 # TODO: investigate why latest does not represent macos 14
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: test in the installations
Expand Down
Loading