Build #1964
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: Build | |
on: | |
push: | |
paths-ignore: | |
- 'README.md' | |
- 'CHANGES.md' | |
- 'LICENSE' | |
- 'Sora.podspec' | |
schedule: | |
- cron: "0 0 * * *" | |
jobs: | |
build: | |
runs-on: macos-14 | |
env: | |
XCODE: /Applications/Xcode_15.2.app | |
XCODE_SDK: iphoneos17.2 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Select Xcode Version | |
run: sudo xcode-select -s '${{ env.XCODE }}/Contents/Developer' | |
- name: Show Xcode Version | |
run: xcodebuild -version | |
- name: Show CocoaPods Version | |
run: pod --version | |
- name: Restore Pods | |
uses: actions/cache@v4 | |
with: | |
path: Pods | |
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }} | |
restore-keys: | | |
${{ runner.os }}-pods- | |
- name: Install Dependences | |
run: | | |
rm Podfile && mv Podfile.dev Podfile | |
pod repo update | |
pod install | |
- name: Build Xcode Project | |
run: | | |
set -o pipefail && \ | |
xcodebuild \ | |
-workspace 'Sora.xcworkspace' \ | |
-scheme 'Sora' \ | |
-sdk ${{ env.XCODE_SDK }} \ | |
-configuration Release \ | |
-derivedDataPath build \ | |
clean build \ | |
CODE_SIGNING_REQUIRED=NO \ | |
CODE_SIGN_IDENTITY= \ | |
PROVISIONING_PROFILE= | |
- name: Check uncommitted unformatted code | |
run: | | |
./lint-format.sh | |
- name: Slack Notification | |
if: failure() | |
uses: rtCamp/action-slack-notify@v2 | |
env: | |
SLACK_CHANNEL: sora-ios-sdk | |
SLACK_COLOR: danger | |
SLACK_TITLE: Build failed | |
SLACK_WEBHOOK: ${{ secrets.SLACK_WEBHOOK }} | |
release: | |
if: contains(github.ref, 'tags/v') | |
needs: [build] | |
runs-on: macos-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1.1.4 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ github.ref }} | |
release_name: Release ${{ github.ref }} | |
draft: false | |
prerelease: false | |