mirror of
https://github.com/MacPass/MacPass.git
synced 2025-12-24 12:19:52 +00:00
33 lines
716 B
YAML
33 lines
716 B
YAML
name: Nightly
|
|
|
|
on:
|
|
#push:
|
|
# branches: [ master ]
|
|
#pull_request:
|
|
# branches: [ master ]
|
|
schedule:
|
|
- cron: '0 23 * * *'
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
nightly:
|
|
runs-on: macos-10.15
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
submodules: recursive
|
|
|
|
- name: Bootstrap Carthage
|
|
run: carthage bootstrap --platform macOS
|
|
|
|
- name: Install xcpretty
|
|
run: gem install xcpretty --no-document --quiet
|
|
|
|
- name: Build
|
|
run: |
|
|
set -o pipefail
|
|
xcodebuild clean
|
|
xcodebuild build -configuration release -project MacPass.xcodeproj -scheme MacPass CODE_SIGNING_REQUIRED=NO -derivedDataPath ./build | xcpretty -c
|