Add Puddle Architecture on project #6
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: Xcode build | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ develop ] | |
jobs: | |
build: | |
env: | |
SCHEME: "NSBrazilConf" | |
DEVICE: "iPhone 11" | |
DERIVED_DATA_PATH: "DerivedData" | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Select Xcode | |
run: sudo xcode-select -switch /Applications/Xcode_11.4.app | |
- name: Xcode build iOS App | |
run: | | |
set -o pipefail && xcodebuild clean -scheme $SCHEME -destination "platform=iOS Simulator,name=$DEVICE" -derivedDataPath $DERIVED_DATA_PATH build-for-testing | xcpretty --color --simple | |