Bump activesupport from 6.1.7.4 to 7.0.8 #27
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: CI | |
on: [pull_request] | |
env: | |
BUNDLE_PATH: vendor/bundle | |
concurrency: | |
group: ${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-sdk-xcode14: | |
runs-on: macOS-13 | |
steps: | |
- name: Install Apple Certificate | |
uses: apple-actions/import-codesign-certs@v1 | |
with: | |
p12-file-base64: ${{ secrets.CERTIFICATEXC }} | |
p12-password: ${{ secrets.CERTIFICATEXC_PASS }} | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Build SDK | |
run: make build-xcframeworks XCODE=14.3.1 | |
build-sdk: | |
runs-on: macOS-13 | |
steps: | |
- name: Install Apple Certificate | |
uses: apple-actions/import-codesign-certs@v1 | |
with: | |
p12-file-base64: ${{ secrets.CERTIFICATEXC }} | |
p12-password: ${{ secrets.CERTIFICATEXC_PASS }} | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Build SDK | |
run: make build-xcframeworks | |
build-docs: | |
runs-on: macOS-13 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Build Docs | |
run: make build-docs | |
run-tests: | |
runs-on: macOS-13 | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Test | |
run: make test XCODE=14.3.1 TEST_DESTINATION="platform=iOS Simulator,OS=16.4,name=iPhone 14" TEST_DESTINATION_TVOS="platform=tvOS Simulator,OS=16.4,name=Apple TV" | |
run-package-tests: | |
runs-on: macOS-13 | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Install xcodegen | |
run: brew install xcodegen | |
- name: Test | |
run: make test-packages | |
build-samples: | |
runs-on: macOS-13 | |
timeout-minutes: 60 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Build samples | |
run: make build-samples | |
# run-tests-watchos: | |
# runs-on: macOS-12 | |
# steps: | |
# - name: Set env variable | |
# run: echo "ImageVersion=$ImageVersion" >> $GITHUB_ENV | |
# - uses: actions/checkout@v2 | |
# - uses: actions/cache@v1 | |
# with: | |
# path: vendor/bundle | |
# key: ${{ runner.os }}-gems-${{ env.ImageVersion }}-${{ hashFiles('**/Gemfile.lock') }} | |
# restore-keys: ${{ runner.os }}-gems-${{ env.ImageVersion }} | |
# - name: Install xcodegen | |
# run: brew install xcodegen | |
# - name: Install Apple Certificate | |
# uses: apple-actions/import-codesign-certs@v1 | |
# with: | |
# p12-file-base64: ${{ secrets.CERTIFICATE_P12_BASE64 }} | |
# p12-password: ${{ secrets.CERTIFICATE_P12_PASSWORD }} | |
# - name: Install the provisioning profile | |
# env: | |
# PROVISIONING_APP_BASE64: ${{ secrets.PROVISIONING_PROFILE_APP_BASE64 }} | |
# PROVISIONING_EXT_BASE64: ${{ secrets.PROVISIONING_PROFILE_EXT_BASE64 }} | |
# run: | | |
# PP_APP_PATH=$RUNNER_TEMP/wkapp_prof.mobileprovision | |
# PP_EXT_PATH=$RUNNER_TEMP/wkext_prof.mobileprovision | |
# echo -n "$PROVISIONING_APP_BASE64" | base64 --decode --output $PP_APP_PATH | |
# echo -n "$PROVISIONING_EXT_BASE64" | base64 --decode --output $PP_EXT_PATH | |
# mkdir -p ~/Library/MobileDevice/Provisioning\ Profiles | |
# cp $PP_APP_PATH ~/Library/MobileDevice/Provisioning\ Profiles | |
# cp $PP_EXT_PATH ~/Library/MobileDevice/Provisioning\ Profiles | |
# - name: Test | |
# run: make build-sample-watchos | |
# pod-lib-lint-watchos: | |
# runs-on: macOS-12 | |
# steps: | |
# - name: Set env variable | |
# run: echo "ImageVersion=$ImageVersion" >> $GITHUB_ENV | |
# - uses: actions/checkout@v2 | |
# - uses: actions/cache@v1 | |
# with: | |
# path: vendor/bundle | |
# key: ${{ runner.os }}-gems-${{ env.ImageVersion }}-${{ hashFiles('**/Gemfile.lock') }} | |
# restore-keys: ${{ runner.os }}-gems-${{ env.ImageVersion }} | |
# - name: Pod lint | |
# run: make pod-lint-watchos | |
pod-lib-lint-tvos: | |
runs-on: macOS-13 | |
steps: | |
- name: Set env variable | |
run: echo "ImageVersion=$ImageVersion" >> $GITHUB_ENV | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Pod lint | |
run: make pod-lint-tvos | |
pod-lib-lint-ios: | |
runs-on: macOS-13 | |
steps: | |
- name: Set env variable | |
run: echo "ImageVersion=$ImageVersion" >> $GITHUB_ENV | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Pod lint | |
run: make pod-lint-ios | |
pod-lib-lint-extensions: | |
runs-on: macOS-13 | |
steps: | |
- name: Set env variable | |
run: echo "ImageVersion=$ImageVersion" >> $GITHUB_ENV | |
- uses: actions/checkout@v4 | |
- uses: ruby/setup-ruby@v1 | |
with: | |
bundler-cache: true | |
- name: Pod lint | |
run: make pod-lint-extensions |