Update CI to support Compound.

This commit is contained in:
Doug 2025-09-28 16:41:55 +01:00 committed by Doug
parent bc13ddcd1a
commit 1f7c324077
4 changed files with 75 additions and 0 deletions

64
.github/workflows/compound-ios.yml vendored Normal file
View file

@ -0,0 +1,64 @@
# 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: Compound
on:
push:
branches: [ main ]
pull_request:
jobs:
tests:
runs-on: macos-15
concurrency:
# Only allow a single run of this workflow on each branch, automatically cancelling older runs.
group: ${{ format('compound-tests-{0}', github.ref) }}
cancel-in-progress: true
steps:
- uses: nschloe/action-cached-lfs-checkout@f46300cd8952454b9f0a21a3d133d4bd5684cfc2 #v1.2.3
- name: Configure Xcode 26
run: sudo xcode-select -s /Applications/Xcode_26.0.app
- name: Install sourcery
run: brew install sourcery
- name: Generate preview tests
working-directory: compound-ios
run: sourcery --config Tools/Sourcery/PreviewTestsConfig.yml
- name: Create simulator
run: xcrun simctl create "iPhone SE 26.0" "iPhone SE (3rd generation)" "com.apple.CoreSimulator.SimRuntime.iOS-26-0"
- name: Run tests
working-directory: compound-ios
run: set -o pipefail && xcodebuild test -scheme 'Compound' -sdk iphonesimulator -destination 'platform=iOS Simulator,name=iPhone SE 26.0,OS=26.0' -skipPackagePluginValidation -resultBundlePath Logs/CompoundTests.xcresult | xcbeautify --renderer github-actions
- name: Zip artifacts
if: failure() # We only care about artefacts if the tests fail
working-directory: compound-ios
run: zip -r Logs/CompoundTests.xcresult.zip Logs/CompoundTests.xcresult/
- name: Archive artifacts
uses: actions/upload-artifact@v4
if: failure() # We only care about artefacts if the tests fail
with:
name: test-results
path: compound-ios/Logs/CompoundTests.xcresult.zip
retention-days: 1
if-no-files-found: ignore
- name: Upload coverage to Codecov
uses: codecov/codecov-action@5a1091511ad55cbe89839c7260b706298ca349f7 # v5.5.1
with:
fail_ci_if_error: false
token: ${{ secrets.CODECOV_TOKEN }}
xcode: true
xcode_archive_path: compound-ios/Logs/CompoundTests.xcresult
flags: compound

View file

@ -18,6 +18,7 @@ excluded:
- "*/Sources/Generated/*"
- Tools/Sources # Our command-line tools use a lot of print commands.
- Secrets
- compound-ios/Inspector
line_length:
warning: 250

View file

@ -20,6 +20,10 @@ ignore:
- "**/*Mock.swift"
- "**/*Proxy.swift"
- "**/*Protocol.swift"
- "compound-ios/Inspector"
- "compound-ios/Tests"
- "compound-ios/Sources/Previews"
- "compound-ios/Tools"
flag_management:
default_rules:

View file

@ -7,6 +7,7 @@
"labels" : [
"pr-misc"
],
"ignoreDeps": ["pointfreeco/swift-snapshot-testing"],
"packageRules" : [
{
"matchManagers": ["github-actions"],
@ -16,6 +17,11 @@
"matchManagers": ["swift", "cocoapods"],
"groupName" : "Swift"
},
{
"managers": ["swift", "cocoapods"],
"matchPaths": ["compound-ios/Package.swift"],
"groupName": "Compound"
},
{
"matchManagers": ["bundler"],
"groupName" : "Ruby"