You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
653 B
34 lines
653 B
language: node_js
|
|
node_js:
|
|
- "node"
|
|
sudo: false
|
|
before_install:
|
|
- export WAPPALYZER_ROOT=$TRAVIS_BUILD_DIR
|
|
- export WAPPALYZER_NODE_PATH=$TRAVIS_BUILD_DIR
|
|
- export PATH=$PATH:$TRAVIS_BUILD_DIR/bin
|
|
- ln -s docker/node/package.json package.json
|
|
after_success:
|
|
- sha256sum build/* > build/SHA256SUMS
|
|
- cat build/SHA256SUMS
|
|
deploy:
|
|
provider: releases
|
|
api_key:
|
|
secure: ""
|
|
file_glob: true
|
|
file: build/*
|
|
skip_cleanup: true
|
|
on:
|
|
tags: true
|
|
after_script: ls -l --block-size=kB build
|
|
cache:
|
|
directories:
|
|
- node_modules
|
|
env:
|
|
- CXX=g++-4.8
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- ubuntu-toolchain-r-test
|
|
packages:
|
|
- g++-4.8
|