-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add the native ARM64 toolchain build to the main CI (#216)
- Loading branch information
1 parent
b1b0690
commit ef5c1e9
Showing
4 changed files
with
63 additions
and
7 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
29 changes: 29 additions & 0 deletions
29
.github/workflows/schedule-swift-toolchain-windows-arm64.yml
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 |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Schedule - Development Snapshot Windows/ARM64 | ||
|
||
on: | ||
schedule: | ||
- cron: "0 */6 * * *" | ||
|
||
# Allows us to trigger toolchain builds on-demand using the same inputs as scheduled builds. | ||
# For more control over the swift-toolchain.yml's inputs, trigger that workflow directly. | ||
workflow_dispatch: | ||
|
||
jobs: | ||
call_development_snapshot: | ||
name: Development Snapshot | ||
uses: ./.github/workflows/build-toolchain.yml | ||
with: | ||
create_release: false | ||
create_snapshot: false | ||
windows_build_arch: arm64 | ||
windows_x64_default_runner: ${{ vars.USE_CIRUN == 'true' && format('cirun-win11-23h2-pro-x64-16-2024-10-10--{0}', github.run_id) || 'swift-build-windows-latest-8-cores' }} | ||
windows_x64_compilers_runner: ${{ vars.USE_CIRUN == 'true' && format('cirun-win11-23h2-pro-x64-64-2024-10-10--{0}', github.run_id) || 'swift-build-windows-latest-64-cores' }} | ||
windows_arm64_default_runner: ${{ vars.USE_CIRUN == 'true' && format('cirun-win11-23h2-pro-arm64-16-2024-10-10--{0}', github.run_id) || 'swift-build-windows-arm64-latest-8-cores' }} | ||
windows_arm64_compilers_runner: ${{ vars.USE_CIRUN == 'true' && format('cirun-win11-23h2-pro-arm64-64-2024-10-10--{0}', github.run_id) || 'swift-build-windows-arm64-latest-32-cores' }} | ||
android_api_level: 28 | ||
build_android: false | ||
secrets: inherit | ||
permissions: | ||
contents: write | ||
packages: write | ||
id-token: write |
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