Schedule - Development Snapshot #729
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
name: Schedule - Development Snapshot | |
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: true | |
windows_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_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' }} | |
android_api_level: 28 | |
secrets: inherit | |
permissions: | |
contents: write | |
packages: write | |
id-token: write | |