-
Notifications
You must be signed in to change notification settings - Fork 9
Add Windows 11 ARM to CI test matrix and simplify matrix infrastructure #396
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
Merged
currantw
merged 16 commits into
valkey-io:main
from
currantw:currantw/383_add_missing_windows11_to_tests
May 14, 2026
+116
−431
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
3f51f92
Add `standard` and `full` profiles to "windows-11-arm"
currantw 0dc0a55
Split unit and integ tests
currantw 4909b5d
Make OS matrix keys lower case
currantw df503d1
Remove unnecessary arch parameter
currantw 77772ae
Remove unused "named_os"
currantw 1a7c47f
Fix shell failures
currantw 68d3d08
Merge branch 'main' of https://github.com/valkey-io/valkey-glide-csha…
currantw 47ea112
fix(test): use FlushMode.Sync in cluster flush tests to fix flakiness
currantw 0c99f1c
Use runner.os and runner.arch where appropriate
currantw bec1c83
Fix typo
currantw 9fb487e
Use SHA hashes instead of versions and bump as we go
currantw 7a40e8c
Update documentation
currantw 5ddc1a8
Only run `aarch64-pc-windows-msvc` in FMT
currantw c28cdf9
Merge branch 'main' of https://github.com/valkey-io/valkey-glide-csha…
currantw 2c78ed5
Merge branch 'main' of https://github.com/valkey-io/valkey-glide-csha…
currantw 5bce6aa
Merge branch 'main' into currantw/383_add_missing_windows11_to_tests
currantw File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,53 +1,45 @@ | ||
| [ | ||
| { | ||
| "OS": "ubuntu", | ||
| "RUNNER": "ubuntu-24.04", | ||
| "ARCH": "x64", | ||
|
currantw marked this conversation as resolved.
|
||
| "TARGET": "x86_64-unknown-linux-gnu", | ||
| "os": "ubuntu", | ||
| "runner": "ubuntu-24.04", | ||
| "target": "x86_64-unknown-linux-gnu", | ||
| "profiles": [ "standard", "full"] | ||
|
currantw marked this conversation as resolved.
|
||
| }, | ||
| { | ||
| "OS": "ubuntu", | ||
| "RUNNER": "ubuntu-24.04-arm", | ||
| "ARCH": "arm64", | ||
| "TARGET": "aarch64-unknown-linux-gnu", | ||
| "os": "ubuntu", | ||
| "runner": "ubuntu-24.04-arm", | ||
| "target": "aarch64-unknown-linux-gnu", | ||
| "profiles": [ "full"] | ||
| }, | ||
| { | ||
| "OS": "amazon-linux", | ||
| "RUNNER": "ubuntu-latest", | ||
| "ARCH": "x64", | ||
| "TARGET": "x86_64-unknown-linux-gnu", | ||
| "IMAGE": "amazonlinux:latest", | ||
| "os": "amazon-linux", | ||
| "runner": "ubuntu-latest", | ||
| "target": "x86_64-unknown-linux-gnu", | ||
| "image": "amazonlinux:latest", | ||
| "profiles": ["full"] | ||
| }, | ||
| { | ||
| "OS": "macos", | ||
| "RUNNER": "macos-15", | ||
| "ARCH": "arm64", | ||
| "TARGET": "aarch64-apple-darwin", | ||
| "os": "macos", | ||
| "runner": "macos-15", | ||
| "target": "aarch64-apple-darwin", | ||
| "profiles": [ "full"] | ||
| }, | ||
| { | ||
| "OS": "macos", | ||
| "NAMED_OS": "darwin", | ||
|
currantw marked this conversation as resolved.
|
||
| "RUNNER": "macos-15-intel", | ||
| "ARCH": "x64", | ||
| "TARGET": "x86_64-apple-darwin", | ||
| "os": "macos", | ||
| "runner": "macos-15-intel", | ||
| "target": "x86_64-apple-darwin", | ||
| "profiles": [ "full"] | ||
| }, | ||
| { | ||
| "OS": "windows", | ||
| "RUNNER": "windows-2025", | ||
| "ARCH": "x64", | ||
| "TARGET": "x86_64-pc-windows-msvc", | ||
| "os": "windows", | ||
| "runner": "windows-2025", | ||
| "target": "x86_64-pc-windows-msvc", | ||
| "profiles": [ "standard", "full"] | ||
| }, | ||
| { | ||
| "OS": "windows", | ||
| "RUNNER": "windows-11-arm", | ||
| "ARCH": "arm64", | ||
| "TARGET": "aarch64-pc-windows-msvc", | ||
| "profiles": [] | ||
| "os": "windows", | ||
| "runner": "windows-11-arm", | ||
| "target": "aarch64-pc-windows-msvc", | ||
| "profiles": ["full"] | ||
|
currantw marked this conversation as resolved.
|
||
| } | ||
| ] | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.