summaryrefslogtreecommitdiff
path: root/scripts
Commit message (Collapse)AuthorAgeFilesLines
...
* [ios, osx] The return of xcpretty, part II (#4676)John Firebaugh2016-04-111-2/+2
|
* [build] Refactor and simplify build systemJohn Firebaugh2016-04-078-227/+135
| | | | | | | | | | | | | | * Main gyp files are now standardized as platform/<platform>/platform.gyp. * Each platform gyp file defines appropriate loop_lib and headless_lib variables. * Each platform gyp file includes mbgl.gypi, which defines base targets which may be useful to all platforms. * CI targets are consistent across platforms: `make $(PLATFORM) && make test-$(PLATFORM)`. * Renamed the "linux" test app to "glfw". It's now built in OS X CI. * Android build flakiness is fixed. * iOS CI builds the bench and iosapp targets. * Mesa version is now in one place. * CI scripts use bash "strict mode" and correct error handling. * All build output goes to the build directory. * Removed vestigial iOS/OS X/Android Travis scripts.
* [core] fix various compilation issuesKonstantin Käfer2016-04-041-3/+3
|
* [build] Fix/simplify ios, isim, and ibench targetsJohn Firebaugh2016-04-041-2/+3
|
* [ios, osx] Replace libuv with native implementationsJohn Firebaugh2016-04-011-0/+2
|
* [gyp] Coverage only if BUILDTYPE=Debug and ENABLE_COVERAGE=1Bruno de Oliveira Abinader2016-02-211-5/+1
| | | | | | | | Coverage compiler and linker flags are used only when (1) in debug build and (2) with ENABLE_COVERAGE set to 1. Besides, because OS X's libtool is unable to understand '--coverage', this linker flag is only used genrating executable targets. Also, using 'link_settings' to specify linker options and separate instructions for OSX and Linux.
* [tests] Upload coverage reports to coveralls.ioBruno de Oliveira Abinader2016-02-202-0/+40
|
* [tests] Use ENABLE_COVERAGE=1 envvar to enable coverageBruno de Oliveira Abinader2016-02-192-0/+10
| | | | This detaches coverage data collection from typical debug build.
* [tests] Added coverage report target 'check'Bruno de Oliveira Abinader2016-02-182-0/+64
| | | | | Issuing 'make check' now collects unit tests coverage data and generates a report in HTML.
* [ios, osx] Consolidate remaining files in platform/{ios,osx}John Firebaugh2016-02-121-3/+3
|
* [build] Build `offline` smoke test for LinuxThiago Marcos P. Santos2016-02-111-0/+1
|
* [core] move platform/gl.hpp to gl/gl.hppKonstantin Käfer2016-02-081-1/+1
|
* [core] Fix typo in version-specific host defaults pathBruno de Oliveira Abinader2015-12-231-1/+1
|
* [core] Fix build script pathsBruno de Oliveira Abinader2015-12-231-4/+4
|
* [core] Merge SQLiteCache into the platform libraryJohn Firebaugh2015-12-221-2/+1
| | | | OfflineFileSource will depend on SQLite too.
* [ios, osx] Drop xcprettyJohn Firebaugh2015-12-212-7/+2
| | | | It's buggy and hides necessary diagnostics.
* Move platform scripts into platformsJohn Firebaugh2015-12-1641-1195/+7
|
* [android] Move into platform subdirectoryJohn Firebaugh2015-12-161-3/+3
|
* [osx] Only build osxapp on TravisMinh Nguyễn2015-12-151-6/+0
| | | | | | Building osxapp means building the SDK, so building the SDK independently is wasteful. Fixes #3313.
* [core] change RapidJSON usage to use CrtAllocator and bump GeoJSON VTKonstantin Käfer2015-12-144-4/+4
|
* [ios] Strip OS X–specific APIs from iOS documentationMinh Nguyễn2015-12-131-0/+4
| | | | appledoc can’t understand conditional compilation. This is the best we can do until we move to Jazzy.
* [osx] Align build settings with Xcode framework project templateMinh Nguyễn2015-12-131-2/+4
| | | | In particular, -Os yields significant size improvements in Release.
* [osx] Moved Mapbox.{h,m} into framework proper; set version variablesMinh Nguyễn2015-12-131-15/+2
|
* [osx] Build framework based on static libraryMinh Nguyễn2015-12-131-31/+21
|
* [osx] Rewrote platform-osx and osxappMinh Nguyễn2015-12-133-0/+87
| | | | | | | | | | | | | | platform-osx now vends a real NSView subclass, MGLMapView, that is readily embedded inside a Cocoa application for OS X. MGLMapView is backed by an NSOpenGLLayer for optimal performance and integration with other layer-backed views. It supports keyboard shortcuts and several gestures and hosts attribution, zooming, and rotation controls as subviews. osxapp is now a bona fide Cocoa application that embeds MGLMapView inside a XIB. osxapp has preferences and a share button for tight integration with custom styles. Enabling asynchronous rendering would be more consistent with iOS but increases CPU usage so much, even when idle, that it isn’t worth any performance gain. The bigger issue is that VAOs aren’t being used. make xpackage creates a static library similar to the one created by make ipackage. make clean cleans additional places where build output ends up. The OS X minimum deployment target has been increased from 10.9 to 10.10. osxapp’s window has a full size content view, which requires 10.10. Lightweight generics require iOS 9+ and OS X 10.11 regardless, because it was only in that release that Foundation collection classes started adopting lightweight generics. Shuffled files around and refactored annotations so that iOS and OS X share a good chunk of the annotations code, which now takes advantage of polymorphism. MGLMapView can now display annotations but cannot yet select them. In osxapp, a long press drops a pin, and so does the map view’s context menu. Annotations have NSPopovers as callouts, and their view controllers can be customized. Annotation image alignment rects are respected for hit testing purposes and for positioning the callout anchor. Callouts in osxapp demonstrate the use of bindings to keep callouts in sync with underlying model objects.
* [test] update test suite to include more comprehensive GeoJSON testsKonstantin Käfer2015-12-114-4/+4
|
* [build] make sure we're building the config file for node Xcode projectsKonstantin Käfer2015-12-111-1/+1
|
* [core] upgrade to GeoJSON VT 3.0.0Konstantin Käfer2015-12-104-4/+4
|
* [core] don't rebuild shaders unless they changeKonstantin Käfer2015-12-101-80/+26
|
* [node] don't go through npm to debug in XcodeKonstantin Käfer2015-12-093-9/+6
|
* [build] use ccacheKonstantin Käfer2015-12-071-0/+27
|
* fixes #3181: move from vendored lib to frameworkJustin R. Miller2015-12-072-3/+4
| | | | | | - Add license file to framework build step to satisfy CocoaPods linting. - Log version when rolling framework (refs #3046). - fixes #1426: get rid of dummy file since we make our own framework.
* [build] Add clang-tidy to TravisKonstantin Käfer2015-12-032-0/+19
|
* [build] add make target "tidy" for running clang-tidyKonstantin Käfer2015-12-032-3/+30
|
* [build] add ninja + compilation database supportKonstantin Käfer2015-12-031-0/+17
|
* [core] Only android needs libzipJohn Firebaugh2015-12-012-2/+0
|
* [node] simpler PACKAGE_JSON_VERSIONMike Morris2015-12-012-7/+1
|
* Merge branch 'release-ios-v3.0.0'Justin R. Miller2015-11-301-1/+1
|\
| * show current version changelog section in docs & link externally to fullJustin R. Miller2015-11-231-1/+1
| | | | | | | | | | | | This is going to fail and output nothing for -pre and -rc tags for now until #3046 is addressed. We can't yet grab those but still have final releases sort after them.
| * refs #2380: plop Settings.bundle inside of framework distributionJustin R. Miller2015-11-181-0/+3
| |
| * static framework target for iOSJustin R. Miller2015-11-161-0/+32
| |
* | [test] Add pixelmatch; use in annotation testsJohn Firebaugh2015-11-253-0/+17
| |
* | reduce framework binary size with more strippingJustin R. Miller2015-11-231-0/+1
| |
* | refs #2380: plop Settings.bundle inside of framework distributionJustin R. Miller2015-11-181-0/+3
| |
* | [android] Bring back OkHTTPLeith Bade2015-11-172-3/+1
| | | | | | | | | | | | | | Update http_request_android.cpp for changes in #2727 Fix crash caused by calling both onFailure and onReponse in the same request Fixes #2856 Fixes #2400
* | static framework target for iOSJustin R. Miller2015-11-161-0/+32
|/
* Publish Bitcode-less build for Xcode 6.4Minh Nguyễn2015-11-112-1/+14
| | | | | | Publish a Release-configuration, symbol-laden, Bitcode-less build in tandem with the other builds. Fixes #2332.
* Updated references to old build docsMinh Nguyễn2015-11-091-1/+1
| | | | Fixes #2871.
* [iOS] Fetch tags on install, not ipackageMinh Nguyễn2015-11-092-1/+2
| | | | | | This change removes a git command that requires a network connection from the ipackage target. It was used to ensure that CI has a tag to version the appledoc documentation with, so the same command has been added to install.sh, where a network connection is otherwise expected. Fixes #2320.
* [node] only upload render test results on linuxnode-v2.0.0-pre.13Mike Morris2015-11-051-1/+1
| | | | They don't run on OS X because Travis OS X boxes don't have GPUs.