summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorThiago Marcos P. Santos <tmpsantos@gmail.com>2018-10-24 01:53:22 +0300
committerThiago Marcos P. Santos <tmpsantos@gmail.com>2018-10-31 18:19:28 +0200
commit69960afb8db0444ec11cb46b47e877cc34f61fc7 (patch)
tree37bcc19f033aadd8c3c158fad02b8c5e4a9437ed /scripts
parent3a3c05bd8aeabf179084bd9a0137edd2abf41e4c (diff)
downloadqtlocation-mapboxgl-69960afb8db0444ec11cb46b47e877cc34f61fc7.tar.gz
[build] Add build system for submodules
Vendorize the submodules and a simple CMake build system for all them. The dependencies will inherit compilation options for core. The goal is to make Mapbox GL Core completely self contained with a simple offline build.
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/nitpick/vendoring.js38
1 files changed, 0 insertions, 38 deletions
diff --git a/scripts/nitpick/vendoring.js b/scripts/nitpick/vendoring.js
deleted file mode 100755
index 07f39ddbc8..0000000000
--- a/scripts/nitpick/vendoring.js
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/usr/bin/env node
-const nitpick = require('.');
-const fs = require('fs');
-const {execSync} = require('child_process');
-
-const head = process.env['CIRCLE_SHA1'];
-const mergeBase = process.env['CIRCLE_MERGE_BASE'];
-if (!mergeBase) {
- console.log('No merge base available.');
- return;
-}
-
-const checkAll = process.argv.indexOf('--check-all') >= 2;
-
-// Run the vendoring script for all vendored packages that were modified in this PR, and check for changes.
-fs.readdirSync('vendor')
- .filter(name => name[0] != '.')
- .filter(name => fs.statSync(`vendor/${name}`).isDirectory())
- .filter(name => checkAll || execSync(`git diff --shortstat ${mergeBase} ${head} -- vendor/${name}`).toString().trim())
- .forEach(name => {
- execSync(`scripts/vendor/${name}.sh`);
-
- // List missing files
- var missing = execSync(`git ls-files --others --exclude-standard -- vendor/${name}`).toString().trim();
- if (!missing.length) {
- nitpick.ok(`All files vendored for ${name} are checked in`);
- } else {
- nitpick.fail(`These vendored files for ${name} are not checked in:`, missing);
- }
-
- // Diff existing files
- const diff = execSync(`git -c color.ui=always diff -- vendor/${name}`).toString().trim();
- if (!diff.length) {
- nitpick.ok(`All files vendored for ${name} are unmodified`);
- } else {
- nitpick.fail(`These vendored files for ${name} have modifications:`, diff);
- }
- });