Split Generated Source Into 26 files for Windows #1141
Workflow file for this run
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 workflow will build a Swift project | |
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-swift | |
name: Swift | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
runs-on: macos-14 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: "16.0" | |
- name: Build | |
run: swift build --build-tests --quiet | |
- name: Run tests (XCTest) | |
run: swift test --skip-build --no-parallel --disable-swift-testing | |
- name: Run tests (Swift testing) | |
run: swift test --skip-build --no-parallel --disable-xctest | |
build-windows: | |
runs-on: windows-latest | |
timeout-minutes: 15 | |
steps: | |
- name: Swift Install | |
uses: compnerd/gha-setup-swift@main | |
with: | |
branch: swift-6.0.3-release | |
tag: 6.0.3-RELEASE | |
- name: Swift Version Check | |
run: swift --version | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: swift build --build-tests --quiet | |
- name: Build Again | |
if: always() | |
run: | | |
dir .build\plugins\outputs\swiftgodot\SwiftGodot\destination\CodeGeneratorPlugin\GeneratedSources | |
swift build --build-tests --verbose | |
- name: Run tests (XCTest) | |
run: swift test --skip-build --no-parallel --disable-swift-testing | |
- name: Run tests (Swift testing) | |
run: swift test --skip-build --no-parallel --disable-xctest | |