File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change 70
70
- name : PodLibLint FirebaseAppCheck Cron
71
71
# TODO: Remove --allow-warnings when stabilized.
72
72
run : scripts/third_party/travis/retry.sh scripts/pod_lib_lint.rb FirebaseAppCheck.podspec --platforms=ios ${{ matrix.flags }}
73
+
74
+ spm :
75
+ # Don't run on private repo unless it is a PR.
76
+ if : (github.repository == 'Firebase/firebase-ios-sdk' && github.event_name == 'schedule') || github.event_name == 'pull_request'
77
+ runs-on : macOS-latest
78
+ steps :
79
+ - uses : actions/checkout@v2
80
+ - name : Initialize xcodebuild
81
+ run : scripts/setup_spm_tests.sh
82
+ - name : iOS Unit Tests
83
+ run : scripts/third_party/travis/retry.sh ./scripts/build.sh AppCheckUnit iOS spm
84
+ - name : iOS Swift Unit Tests
85
+ run : scripts/third_party/travis/retry.sh ./scripts/build.sh AppCheckUnitSwift iOS spm
86
+
87
+ spm-cron :
88
+ # Don't run on private repo.
89
+ if : github.event_name == 'schedule' && github.repository == 'Firebase/firebase-ios-sdk'
90
+ runs-on : macOS-latest
91
+ strategy :
92
+ matrix :
93
+ target : [tvOS, macOS, catalyst]
94
+ steps :
95
+ - uses : actions/checkout@v2
96
+ - name : Initialize xcodebuild
97
+ run : scripts/setup_spm_tests.sh
98
+ - name : Unit Tests
99
+ run : scripts/third_party/travis/retry.sh ./scripts/build.sh AppCheckUnit ${{ matrix.target }} spm
100
+ - name : Swift Unit Tests
101
+ run : scripts/third_party/travis/retry.sh ./scripts/build.sh AppCheckUnitSwift ${{ matrix.target }} spm
You can’t perform that action at this time.
0 commit comments