From e7a5eab9821bfd7cde4cc7591bbbeb3158cb61ee Mon Sep 17 00:00:00 2001 From: Michael Starke Date: Mon, 1 Feb 2021 20:23:31 +0100 Subject: [PATCH] Created nightly action to migrate from TravisCI --- .github/workflows/nightly.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/nightly.yml diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml new file mode 100644 index 00000000..92bbaf8a --- /dev/null +++ b/.github/workflows/nightly.yml @@ -0,0 +1,30 @@ +name: Nightly + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + + 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