forked from facebook/buck2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
buck2/github: use faster Windows runners (facebook#812)
Summary: For some reason Cargo builds are at least twice slower on Windows than on Linux or MacOS on Github. I checked this is true for other popular Rust projects as well. We can use faster 8-core runners instead of 2-core to reduce this difference. Differential Revision: D66011530 Privacy Context Container: L1123788
- Loading branch information
1 parent
093aabe
commit ed056d2
Showing
2 changed files
with
22 additions
and
13 deletions.
There are no files selected for viewing
This file contains 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 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 |
---|---|---|
|
@@ -21,7 +21,7 @@ jobs: | |
- uses: ./.github/actions/build_debug | ||
- uses: ./.github/actions/run_test_py | ||
windows-build-and-test: | ||
runs-on: windows-latest | ||
runs-on: windows-8-core | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: ./.github/actions/setup_windows_env | ||
|
@@ -72,7 +72,7 @@ jobs: | |
- uses: ./.github/actions/setup_reindeer | ||
- uses: ./.github/actions/build_bootstrap | ||
windows-build-examples: | ||
runs-on: windows-latest | ||
runs-on: windows-8-core | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: ./.github/actions/setup_windows_env | ||
|