Update CI #2
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
name: Compatibility tests | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
compatibility_tests_macos: | |
name: Execute compatibility tests | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: macos-13 | |
xcode-version: "15.1" # Swift 5.9.2 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Xcode | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: ${{ matrix.xcode-version }} | |
- name: Swift version | |
run: swift --version | |
# FIXME: Temporary disable this | |
# - name: Run tests against Apple's AttributeGraph on macOS | |
# run: | | |
# swift test \ | |
# -c debug \ | |
# -Xswiftc -warnings-as-errors \ | |
# --build-path .build-compatibility-test-debug | |
# env: | |
# OPENGRAPH_COMPATIBILITY_TEST: 1 | |
- name: Run tests against Apple's AttributeGraph on iOS Simulator | |
run: | | |
xcodebuild test \ | |
-scheme OpenGraphCompatibilityTests \ | |
-configuration Release \ | |
-sdk iphonesimulator \ | |
-destination "platform=iOS Simulator" \ | |
-derivedDataPath .build-test-release-iOS | |
env: | |
OPENGRAPH_COMPATIBILITY_TEST: 1 |