forked from firebase/firebase-ios-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Firebase pod support for watchOS for RC and RTDB (firebase#7841)
- Loading branch information
Showing
6 changed files
with
176 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
name: watchos-sample | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
# Sources | ||
- 'FirebaseABTesting/**' | ||
- 'FirebaseDatabase/**' | ||
- 'FirebaseRemoteConfig/**' | ||
- 'FirebaseStorage/**' | ||
# Sample | ||
- 'Example/watchOSSample/**' | ||
# Firebase Podspec | ||
- 'Firebase.podspec' | ||
# This file | ||
- '.github/workflows/watchos-sample.yml' | ||
# Rebuild on Ruby infrastructure changes | ||
- 'Gemfile*' | ||
schedule: | ||
# Run every day at 10pm (PST) - cron uses UTC times | ||
- cron: '0 6 * * *' | ||
|
||
jobs: | ||
|
||
tv-sample-build-test: | ||
# Don't run on private repo unless it is a PR. | ||
if: (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request' | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup Bundler | ||
run: scripts/setup_bundler.sh | ||
- name: Prereqs | ||
run: scripts/install_prereqs.sh WatchOSSample watchOS | ||
- name: Build | ||
run: ([ -z $plist_secret ] || scripts/build.sh WatchOSSample watchOS) |
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
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