-
Notifications
You must be signed in to change notification settings - Fork 13
29 lines (25 loc) · 1.26 KB
/
pull-request-swift-toolchain-cirun.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
name: Pull Request - Development Snapshot (Cirun)
on:
pull_request:
branches:
- 'main'
paths:
- '.github/workflows/swift-toolchain.yml'
- '.github/workflows/pull-request-swift-toolchain-cirun.yml'
workflow_dispatch:
jobs:
call_development_snapshot:
if: vars.USE_CIRUN == 'true'
name: Development Snapshot
uses: ./.github/workflows/build-toolchain.yml
with:
create_release: false
windows_x64_default_runner: ${{ vars.USE_CIRUN == 'true' && format('cirun-win11-23h2-pro-x64-16-2024-12-19--{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-12-19--{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-12-19--{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-12-19--{0}', github.run_id) || 'swift-build-windows-arm64-latest-32-cores' }}
android_api_level: 28
secrets: inherit
permissions:
contents: read
pull-requests: read