release: v1.2.0 #682
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: Build | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'main' | |
- 'chore/**' | |
- 'docs/**' | |
- 'feat/**' | |
- 'feature/**' | |
- 'fix/**' | |
- 'refactor/**' | |
- 'releases/**' | |
- 'style/**' | |
- 'test/**' | |
- 'tech/**' | |
- 'legacy/**' | |
env: | |
RUST_TARGET_PATH: pact-reference | |
jobs: | |
test: | |
name: Run ${{ matrix.platform }} on ${{ matrix.host }} | |
runs-on: ${{ matrix.host }} | |
strategy: | |
fail-fast: false | |
matrix: | |
host: [macos-13, macos-14] | |
platform: [ios, macos] | |
include: | |
- platform: ios | |
scheme: "PactSwift-iOS" | |
destination: "platform=iOS Simulator,name=iPhone 14 Pro" | |
- platform: macos | |
scheme: "PactSwift-macOS" | |
destination: "arch=x86_64" | |
- host: macos-13 | |
xcode: 14.3.1 | |
- host: macos-14 | |
xcode: 15.4 | |
env: | |
SCHEME: ${{ matrix.scheme }} | |
DESTINATION: ${{ matrix.destination }} | |
concurrency: | |
group: test_${{ matrix.host }}_${{ matrix.scheme }}_${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Use Xcode ${{ matrix.xcode }} | |
run: sudo xcode-select -switch /Applications/Xcode_${{ matrix.xcode }}.app | |
- name: Prepare Tools | |
run: | | |
Scripts/prepare_build_tools | |
- name: Run tests (Xcode) | |
run: | | |
set -o pipefail && xcodebuild clean test -project PactSwift.xcodeproj -scheme "$SCHEME" -destination "$DESTINATION" GCC_INSTRUMENT_PROGRAM_FLOW_ARCS=YES GCC_GENERATE_TEST_COVERAGE_FILES=YES | xcbeautify | |
- name: Run tests (CLI - Swift Package) | |
run: | | |
swift build | |
swift test -c release | |
test_linux: | |
name: Run on Ubuntu | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
concurrency: | |
group: test-linux-${{ github.ref }} | |
cancel-in-progress: true | |
steps: | |
- uses: fwal/setup-swift@v1 | |
- name: Get swift version | |
run: swift --version | |
- name: "⬇️ Checkout repository" | |
uses: actions/checkout@v4 | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v1 | |
- name: "♼ Cache rust binaries" | |
uses: actions/cache@v3 | |
with: | |
path: | | |
${{ env.RUST_TARGET_PATH }} | |
key: build-${{ runner.os }}-rust-pactswift-${{ hashFiles('**/Package.resolved') }} | |
restore-keys: | | |
build-${{ runner.os }}-rust-pactswift | |
build-${{ runner.os }}-rust- | |
- name: "⚗️ Build and Test" | |
run: | | |
Scripts/build_test_linux | |
# test_carthage: | |
# name: "Verify for Carthage" | |
# runs-on: macos-14 | |
# strategy: | |
# fail-fast: true | |
# concurrency: | |
# group: test-carthage-${{ github.ref }} | |
# cancel-in-progress: true | |
# steps: | |
# - name: Checkout repository | |
# uses: actions/checkout@v2 | |
# - name: Use Xcode 13.4.1 | |
# run: sudo xcode-select -switch /Applications/Xcode_13.4.1.app | |
# - name: Carthage build | |
# run: | | |
# carthage build --use-xcframeworks --no-skip-current | |
after_success: | |
needs: | |
- test | |
- test_linux | |
# - test_carthage | |
name: Build demo projects | |
if: github.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Build demo projects | |
run: | | |
curl -X POST https://api.github.com/repos/surpher/pact-swift-examples/dispatches -H 'Accept: application/vnd.github.everest-preview+json' -u ${{ secrets.PACT_SWIFT_TOKEN }} --data '{"event_type":"PactSwift - ${{ github.event.head_commit.message }}"}' |