Revert "[Infra] Embed frameworks scripts/add_framework_script.rb
"
#666
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: Authentication | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- '.github/workflows/authentication.yml' | |
- 'authentication/**' | |
- 'scripts/*' | |
- 'scripts/authentication.sh' | |
pull_request: | |
branches: [ main ] | |
paths: | |
- '.github/workflows/authentication.yml' | |
- 'authentication/**' | |
- 'scripts/*' | |
- 'scripts/authentication.sh' | |
workflow_dispatch: | |
env: | |
SAMPLE: Authentication | |
secrets_passphrase: ${{ secrets.GHASECRETSGPGPASSPHRASE1 }} | |
jobs: | |
cocoapods: | |
name: cocoapods | |
runs-on: macOS-12 | |
env: | |
SPM: false | |
LEGACY: false | |
OS: iOS | |
DEVICE: iPhone 14 | |
TEST: false | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
# Facebook SDK requires Xcode 14 | |
- name: Xcode 14.1 | |
run: sudo xcode-select -s /Applications/Xcode_14.1.app/Contents/Developer | |
- name: Setup | |
run: | | |
cd authentication | |
gem install bundler | |
bundle install | |
gem install xcpretty | |
bundle exec pod install --repo-update | |
../scripts/install_prereqs/authentication.sh | |
- name: Build Swift | |
run: ./scripts/test.sh | |
env: | |
SWIFT_SUFFIX: "" |