diff options
author | Bruno de Oliveira Abinader <bruno@mapbox.com> | 2017-11-20 12:29:51 +0200 |
---|---|---|
committer | Jason Wray <jason@mapbox.com> | 2017-11-21 12:27:52 -0500 |
commit | 8f4c07c5b8a0eff9d8047ce6ae030f155359db81 (patch) | |
tree | b2a51702572f4dcc75d12e5073f227d3e3b70c49 /circle.yml | |
parent | 9206e46154f4d3c79ebe3da405fc6b641d336cb9 (diff) | |
download | qtlocation-mapboxgl-8f4c07c5b8a0eff9d8047ce6ae030f155359db81.tar.gz |
[build] Added CircleCI macos-debug-qt5 job
Diffstat (limited to 'circle.yml')
-rw-r--r-- | circle.yml | 40 |
1 files changed, 39 insertions, 1 deletions
diff --git a/circle.yml b/circle.yml index 75b10850e6..09421bec9b 100644 --- a/circle.yml +++ b/circle.yml @@ -34,6 +34,7 @@ workflows: #- ios-sanitize-address - ios-sanitize-thread - macos-debug + - macos-debug-qt5 step-library: - &generate-cache-key @@ -119,11 +120,23 @@ step-library: - &install-macos-dependencies run: - name: Install dependencies + name: Install macOS dependencies command: | brew install cmake brew install ccache + - &install-macos-qt-dependencies + run: + name: Install macOS Qt dependencies + command: | + sudo chown -R $USER /usr/local + brew install qt + brew link qt --force + brew linkapps qt + export HOMEBREW_QT5_CELLAR=$(brew --cellar qt) + export HOMEBREW_QT5_VERSION=$(brew list --versions qt | rev | cut -d' ' -f1 | rev) + ln -s $HOMEBREW_QT5_CELLAR/$HOMEBREW_QT5_VERSION/mkspecs /usr/local/mkspecs + ln -s $HOMEBREW_QT5_CELLAR/$HOMEBREW_QT5_VERSION/plugins /usr/local/plugins - &run-node-tests run: @@ -693,3 +706,28 @@ jobs: - store_artifacts: path: test/fixtures destination: test/fixtures + +# ------------------------------------------------------------------------------ + macos-debug-qt5: + macos: + xcode: "9.0" + environment: + BUILDTYPE: Debug + HOMEBREW_NO_AUTO_UPDATE: 1 + steps: + - checkout + - *install-macos-dependencies + - *install-macos-qt-dependencies + - *generate-cache-key + - *restore-cache + - *reset-ccache-stats + - *build-qt-app + - *build-qt-test + - run: + name: Run qt-test + command: make run-qt-test + - *show-ccache-stats + - *save-cache + - store_artifacts: + path: test/fixtures + destination: test/fixtures |