blob: 386e2dbf0354918bccd2ae7c04c1d68d396d2767 [file] [log] [blame] [view]
Alexander Afanasyevb81cff92015-07-09 09:45:09 +08001CONTINUOUS INTEGRATION SCRIPTS
2==============================
3
4Environment Variables Used in Build Scripts
5-------------------------------------------
6
7- `NODE_LABELS`: the variable defines a list of OS properties. The set values are used by the
8 build scripts to select proper behavior for different OS.
9
10 The list should include at least `[OS_TYPE]`, `[DISTRO_TYPE]`, and `[DISTRO_VERSION]`.
11
12 Possible values for Linux OS:
13
14 * `[OS_TYPE]`: `Linux`
15 * `[DISTRO_TYPE]`: `Ubuntu`
Davide Pesaventocc7bee72016-04-22 02:21:13 +020016 * `[DISTRO_VERSION]`: `Ubuntu-14.04`, `Ubuntu-16.04`
Alexander Afanasyevb81cff92015-07-09 09:45:09 +080017
18 Possible values of OSX OS:
19
20 * `[OS_TYPE]`: `OSX`
21 * `[DISTRO_TYPE]`: `OSX` (can be absent)
Davide Pesaventocc7bee72016-04-22 02:21:13 +020022 * `[DISTRO_VERSION]`: `OSX-10.11`, `OSX-10.10`, `OSX-10.9`, `OSX-10.8`
Alexander Afanasyevb81cff92015-07-09 09:45:09 +080023
24- `JOB_NAME`: optional variable to define type of the job. Depending on the defined job type,
25 the build scripts can perform different tasks.
26
27 Possible values:
28
29 * empty: default build process
30 * `code-coverage` (Linux OS is assumed): build process with code coverage analysis
Alexander Afanasyev6602b3b2016-03-15 14:14:11 -070031 * `limited-build`: only a single build with tests
Alexander Afanasyevf22ebaf2015-12-17 21:23:05 -080032
33- `CACHE_DIR`: the variable defines a path to folder containing cached files from previous builds,
34 e.g., a compiled version of ndn-cxx library. If not set, `/tmp` is used.