Add OGGraphGetWeakValue #292
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: iOS | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
ios_test: | |
name: Execute tests on iOS | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [macos-15] | |
xcode-version: ["16.0"] # Swift 6.0 | |
ios-version: ["18.0"] | |
include: | |
- ios-version: "18.0" | |
ios-simulator-name: "iPhone 16 Pro" | |
runs-on: ${{ matrix.os }} | |
env: | |
OPENGRAPH_WERROR: 1 | |
OPENGRAPH_ATTRIBUTEGRAPH: 0 | |
OPENGRAPH_COMPATIBILITY_TEST: 0 | |
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 | |
- name: Build in debug mode on iOS | |
run: | | |
xcodebuild build \ | |
-scheme OpenGraph-Package \ | |
-configuration Debug \ | |
-destination "platform=iOS Simulator,OS=${{ matrix.ios-version }},name=${{ matrix.ios-simulator-name }}" \ | |
-derivedDataPath .build-debug \ | |
-skipMacroValidation \ | |
-skipPackagePluginValidation \ | |
OTHER_SWIFT_FLAGS="-warnings-as-errors" | |
- name: Build and run tests in debug mode with coverage on iOS Simulator | |
run: | | |
xcodebuild test \ | |
-scheme OpenGraph-Package \ | |
-configuration Debug \ | |
-destination "platform=iOS Simulator,OS=${{ matrix.ios-version }},name=${{ matrix.ios-simulator-name }}" \ | |
-enableCodeCoverage=YES \ | |
-derivedDataPath .build-test-debug \ | |
-skipPackagePluginValidation \ | |
-skipMacroValidation | |
# OTHER_SWIFT_FLAGS="-warnings-as-errors" Conflicting options '-warnings-as-errors' and '-suppress-warnings' | |
profdata_file_path=$(find . -path "./.build-test-debug/Build/ProfileData/*/Coverage.profdata" -type f) | |
xcrun llvm-cov show \ | |
-instr-profile=$profdata_file_path \ | |
.build-test-debug/Build/Products/Debug-iphonesimulator/OpenGraphTests.xctest/OpenGraphTests \ | |
> coverage.txt | |
- uses: codecov/codecov-action@v3 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
verbose: true |