@iobroker/create-adapter
Version:
Command line utility to create customized ioBroker adapters
48 lines (45 loc) • 1.15 kB
JavaScript
;
const templateFunction = answers => {
var _a;
const useTravis = (_a = answers.ci) === null || _a === void 0 ? void 0 : _a.includes("travis");
if (!useTravis)
return;
const isAdapter = answers.features.indexOf("adapter") > -1;
const template = `
os:
- linux
- osx
- windows
language: node_js
node_js:
- '8'
- '10'
- '12'
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.9
before_install:
- 'if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then CC=gcc-4.9; fi'
- 'if [[ "$TRAVIS_OS_NAME" == "linux" ]]; then CC=g++-4.9; fi'
before_script:
- export NPMVERSION=$(echo "$($(which npm) -v)"|cut -c1)
- 'if [[ $NPMVERSION == 5 ]]; then npm install -g npm; fi'
- npm -v
script:
- npm run test:package
${isAdapter ? ` - npm run test:unit
- export DEBUG=testing:*
- npm run test:integration
` : ""}`;
return template.trimLeft();
};
templateFunction.customPath = ".travis.yml";
// .travis.yml is always formatted with 2 spaces
templateFunction.noReformat = true;
module.exports = templateFunction;
//# sourceMappingURL=_travis.yml.js.map