NetNewsWire/.github/workflows/build.yml

44 lines
1.0 KiB
YAML
Raw Normal View History

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
2019-10-11 03:02:50 +02:00
strategy:
matrix:
scheme: ['NetNewsWire']
# scheme: ['NetNewsWire', 'NetNewsWire-iOS']
2019-10-09 00:18:13 +02:00
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
- name: Build Version
run: xcodebuild -version
- name: Build Settings
run: xcodebuild -showBuildSettings
- name: Build SDK
run: xcodebuild -showsdks
- name: Show Available Destinations
run: xcodebuild -scheme RSDatabaseiOS -showdestinations
2019-10-09 00:18:13 +02:00
- name: Run Build
2019-10-12 02:55:29 +02:00
# continue-on-error: true
2019-10-09 00:18:13 +02:00
env:
ENCRYPTION_SECRET: ${{ secrets.ENCRYPTION_SECRET }}
KEY_SECRET: ${{ secrets.KEY_SECRET }}
2019-10-11 03:06:13 +02:00
SCHEME: ${{ matrix.scheme }}
run: buildscripts/ci-build.sh
2019-10-12 02:19:39 +02:00
2019-10-12 02:55:29 +02:00
# - name: Check for Crashlog
# run: buildscripts/crash-logs.sh