-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
60 additions
and
58 deletions.
There are no files selected for viewing
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,48 +1,69 @@ | ||
name: Build PR | ||
name: Build Pull Request | ||
|
||
on: | ||
pull_request: | ||
push: | ||
branches: | ||
- 'main' | ||
|
||
env: | ||
RUST_TARGET_PATH: pact-reference | ||
|
||
jobs: | ||
test: | ||
name: Run ${{ matrix.platform }} on ${{ matrix.host }} | ||
name: "🤖 Test ${{ matrix.platform }} on ${{ matrix.host }}" | ||
runs-on: ${{ matrix.host }} | ||
|
||
strategy: | ||
fail-fast: true | ||
matrix: | ||
host: [macos-12, macos-13] | ||
host: [macos-13] | ||
platform: [ios, macos] | ||
include: | ||
- platform: ios | ||
scheme: "PactSwift-iOS" | ||
destination: "platform=iOS Simulator,name=iPhone 14 Pro" | ||
xcode: 14.3.1 | ||
- platform: macos | ||
scheme: "PactSwift-macOS" | ||
destination: "arch=x86_64" | ||
xcode: "15.0" | ||
|
||
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@v2 | ||
- name: "🧑💻 Checkout repository" | ||
uses: actions/checkout@v3 | ||
|
||
- name: "⚙️ Use Xcode ${{ matrix.xcode }}" | ||
run: sudo xcode-select -switch /Applications/Xcode_${{ matrix.xcode }}.app | ||
|
||
- name: Prepare Tools | ||
- name: "🧰 Prepare Tools" | ||
run: | | ||
Scripts/prepare_build_tools | ||
- name: Run tests (Xcode) | ||
- name: "📦 Resolve package dependencies" | ||
run: | | ||
set -o pipefail && xcodebuild clean test -resolvePackageDependencies -project PactSwift.xcodeproj -scheme "$SCHEME" -destination "$DESTINATION" | xcbeautify | ||
- name: "🧪 Run tests (Xcode ${{ matrix.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) | ||
- name: "⚗️ Run tests in terminal (${{ matrix.destination }})" | ||
run: | | ||
swift build | ||
swift test -c release | ||
# after_success: | ||
# needs: [test] | ||
# 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 }}"}' |
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
// swift-tools-version:5.8 | ||
// swift-tools-version:5.3 | ||
|
||
import PackageDescription | ||
|
||
|
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