-
Notifications
You must be signed in to change notification settings - Fork 87
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
1 parent
929b434
commit 32e3fd2
Showing
5 changed files
with
72 additions
and
78 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -112,70 +112,70 @@ jobs: | |
fastlane/test_output/logs/*/Diagnostics/**/*.txt | ||
fastlane/test_output/logs/*/Diagnostics/simctl_diagnostics/DiagnosticReports/* | ||
build-apps: | ||
name: Build Demo App | ||
strategy: | ||
matrix: | ||
include: | ||
- xcode: 15.4 | ||
os: macos-14 | ||
- xcode: 15.0.1 | ||
os: macos-14 | ||
fail-fast: false | ||
runs-on: ${{ matrix.os }} | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: ./.github/actions/ruby-cache | ||
- uses: ./.github/actions/xcode-cache | ||
- name: Build Demo App | ||
run: bundle exec fastlane build_demo | ||
env: | ||
XCODE_VERSION: ${{ matrix.xcode }} | ||
- uses: 8398a7/action-slack@v3 | ||
with: | ||
status: ${{ job.status }} | ||
text: "You shall not pass!" | ||
job_name: "${{ github.workflow }}: ${{ github.job }}" | ||
fields: message,commit,author,action,workflow,job,took | ||
env: | ||
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
MATRIX_CONTEXT: ${{ toJson(matrix) }} | ||
if: failure() && github.event_name == 'schedule' | ||
# build-apps: | ||
# name: Build Demo App | ||
# strategy: | ||
# matrix: | ||
# include: | ||
# - xcode: 15.4 | ||
# os: macos-14 | ||
# - xcode: 15.0.1 | ||
# os: macos-14 | ||
# fail-fast: false | ||
# runs-on: ${{ matrix.os }} | ||
# steps: | ||
# - uses: actions/[email protected] | ||
# - uses: ./.github/actions/ruby-cache | ||
# - uses: ./.github/actions/xcode-cache | ||
# - name: Build Demo App | ||
# run: bundle exec fastlane build_demo | ||
# env: | ||
# XCODE_VERSION: ${{ matrix.xcode }} | ||
# - uses: 8398a7/action-slack@v3 | ||
# with: | ||
# status: ${{ job.status }} | ||
# text: "You shall not pass!" | ||
# job_name: "${{ github.workflow }}: ${{ github.job }}" | ||
# fields: message,commit,author,action,workflow,job,took | ||
# env: | ||
# SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }} | ||
# MATRIX_CONTEXT: ${{ toJson(matrix) }} | ||
# if: failure() && github.event_name == 'schedule' | ||
|
||
build-xcode15: | ||
name: Build SDKs (Xcode 15.0) | ||
runs-on: macos-13 | ||
if: ${{ github.event_name != 'push' && github.event.inputs.snapshots != 'true' }} | ||
env: | ||
XCODE_VERSION: "15.0.1" | ||
steps: | ||
- name: Connect Bot | ||
uses: webfactory/[email protected] | ||
with: | ||
ssh-private-key: ${{ secrets.BOT_SSH_PRIVATE_KEY }} | ||
- uses: actions/[email protected] | ||
- uses: ./.github/actions/ruby-cache | ||
- name: List Xcode versions | ||
run: mdfind "kMDItemCFBundleIdentifier = 'com.apple.dt.Xcode'" | ||
timeout-minutes: 25 | ||
- name: Build SwiftUI | ||
run: bundle exec fastlane test_ui device:"iPhone 15" build_for_testing:true | ||
timeout-minutes: 25 | ||
- name: Build XCFrameworks | ||
run: bundle exec fastlane build_xcframeworks | ||
timeout-minutes: 25 | ||
env: | ||
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }} | ||
APPSTORE_API_KEY: ${{ secrets.APPSTORE_API_KEY }} | ||
# build-xcode15: | ||
# name: Build SDKs (Xcode 15.0) | ||
# runs-on: macos-13 | ||
# if: ${{ github.event_name != 'push' && github.event.inputs.snapshots != 'true' }} | ||
# env: | ||
# XCODE_VERSION: "15.0.1" | ||
# steps: | ||
# - name: Connect Bot | ||
# uses: webfactory/[email protected] | ||
# with: | ||
# ssh-private-key: ${{ secrets.BOT_SSH_PRIVATE_KEY }} | ||
# - uses: actions/[email protected] | ||
# - uses: ./.github/actions/ruby-cache | ||
# - name: List Xcode versions | ||
# run: mdfind "kMDItemCFBundleIdentifier = 'com.apple.dt.Xcode'" | ||
# timeout-minutes: 25 | ||
# - name: Build SwiftUI | ||
# run: bundle exec fastlane test_ui device:"iPhone 15" build_for_testing:true | ||
# timeout-minutes: 25 | ||
# - name: Build XCFrameworks | ||
# run: bundle exec fastlane build_xcframeworks | ||
# timeout-minutes: 25 | ||
# env: | ||
# MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }} | ||
# APPSTORE_API_KEY: ${{ secrets.APPSTORE_API_KEY }} | ||
|
||
automated-code-review: | ||
name: Automated Code Review | ||
runs-on: macos-13 | ||
env: | ||
XCODE_VERSION: "15.0.1" | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: ./.github/actions/bootstrap | ||
- run: bundle exec fastlane rubocop | ||
- run: ./Scripts/run-linter.sh | ||
- run: bundle exec fastlane pod_lint | ||
# automated-code-review: | ||
# name: Automated Code Review | ||
# runs-on: macos-13 | ||
# env: | ||
# XCODE_VERSION: "15.0.1" | ||
# steps: | ||
# - uses: actions/[email protected] | ||
# - uses: ./.github/actions/bootstrap | ||
# - run: bundle exec fastlane rubocop | ||
# - run: ./Scripts/run-linter.sh | ||
# - run: bundle exec fastlane pod_lint |
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
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