2019-10-09 00:18:13 +02:00
|
|
|
name: CI
|
|
|
|
|
2019-10-10 18:01:41 +02:00
|
|
|
on: [push, pull_request]
|
2019-10-09 00:18:13 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
runs-on: macOS-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Checkout Project
|
|
|
|
uses: actions/checkout@v1
|
|
|
|
with:
|
|
|
|
submodules: recursive
|
|
|
|
|
|
|
|
- name: Switch to Xcode 11
|
|
|
|
run: sudo xcode-select -s /Applications/Xcode_11.app
|
2019-10-10 06:40:38 +02:00
|
|
|
|
|
|
|
- name: xcodebuild -showBuildSettings
|
|
|
|
run: xcodebuild -showBuildSettings
|
2019-10-09 00:18:13 +02:00
|
|
|
|
|
|
|
- name: Run Build
|
|
|
|
env:
|
|
|
|
ENCRYPTION_SECRET: ${{ secrets.ENCRYPTION_SECRET }}
|
|
|
|
KEY_SECRET: ${{ secrets.KEY_SECRET }}
|
2019-10-10 06:40:38 +02:00
|
|
|
run: buildscripts/ci-build.sh
|