Build verbose to better enable debugging package working directory in CI #51
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: CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
spm-15: | |
name: Build and Test on Xcode 15 | |
runs-on: macos-13 | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- name: Select Xcode Version | |
run: sudo xcode-select --switch /Applications/Xcode_15.0.1.app/Contents/Developer | |
- name: Build and Test Framework | |
run: xcrun swift test -c release --enable-code-coverage -Xswiftc -enable-testing | |
- name: Prepare Coverage Reports | |
run: ./Scripts/prepare-coverage-reports.sh | |
- name: Upload Coverage Reports | |
if: success() | |
uses: codecov/codecov-action@v3 | |
spm-package-integration-15: | |
name: Build Package Integration on Xcode 15 | |
runs-on: macos-13 | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- name: Select Xcode Version | |
run: sudo xcode-select --switch /Applications/Xcode_15.0.1.app/Contents/Developer | |
- name: Build Package Integration | |
run: xcrun swift build -c release --package-path Examples/ExamplePackageIntegration --verbose | |
spm-project-integration-15: | |
name: Build Project Integration on Xcode 15 | |
runs-on: macos-13 | |
steps: | |
- name: Checkout Repo | |
uses: actions/checkout@v3 | |
- name: Select Xcode Version | |
run: sudo xcode-select --switch /Applications/Xcode_15.0.1.app/Contents/Developer | |
- name: Build Project Integration | |
run: pushd Examples/ExampleProjectIntegration; xcrun xcodebuild build -skipPackagePluginValidation -skipMacroValidation -scheme ExampleProjectIntegration -verbose; popd |