Structured Logs: Flush logs on SDK flush/close #15
Workflow file for this run
This file contains hidden or 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: Lint CocoaPods Specs | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "Sources/**" | |
- "Tests/**" | |
- "test-server/**" | |
- "Samples/**" | |
- ".github/workflows/lint-cocoapods-specs.yml" | |
- "scripts/ci-select-xcode.sh" | |
- "Makefile" # Make commands used for linting setup | |
- "Brewfile*" # Tools installation affects linting environment | |
- ".swiftlint.yml" | |
pull_request: | |
paths: | |
- "Sources/**" | |
- "Tests/**" | |
- "test-server/**" | |
- "Samples/**" | |
- ".github/workflows/lint-cocoapods-specs.yml" | |
- "scripts/ci-select-xcode.sh" | |
- "Sentry.xcodeproj/**" | |
- "*.podspec" | |
- "Gemfile.lock" | |
- "Makefile" # Make commands used for linting setup | |
- "Brewfile*" # Tools installation affects linting environment | |
- ".swiftlint.yml" | |
# https://docs.github.com/en/actions/using-jobs/using-concurrency#example-using-a-fallback-value | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | |
cancel-in-progress: true | |
jobs: | |
lint-podspec: | |
name: ${{ matrix.podspec}} ${{ matrix.library_type }} ${{ matrix.platform}} | |
runs-on: macos-14 | |
strategy: | |
fail-fast: false | |
matrix: | |
podspec: ["Sentry", "SentrySwiftUI"] | |
platform: ["ios", "macos", "tvos", "watchos"] | |
library_type: ["dynamic", "static"] | |
steps: | |
- uses: actions/checkout@v4 | |
- run: ./scripts/ci-select-xcode.sh 15.4 | |
# We need to update the spec-repo, because it can happen that it is not up to date and then the lint fails. | |
- run: pod repo update | |
- name: Validate Podspec | |
run: ./scripts/pod-lib-lint.sh ${{ matrix.platform }} ${{ matrix.podspec}} ${{ matrix.library_type}} | |
lint-hybrid-sdk-podspec: | |
name: Sentry/HybridSDK | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- run: ./scripts/ci-select-xcode.sh 15.4 | |
- run: pod repo update | |
- name: Validate HybridPod Podspec | |
run: pod lib lint ./Tests/HybridSDKTest/HybridPod.podspec --allow-warnings --verbose --platforms=ios "--include-podspecs={Sentry.podspec}" |