azure-cli
Version:
Microsoft Azure Cross Platform Command Line tool
36 lines (28 loc) • 770 B
YAML
dist: trusty
sudo: required
language: node_js
node_js:
- "6.10.0"
matrix:
allow_failures:
install:
- npm install -g npm@4.1.0
- npm --version
- npm install
# this is purely for debugging purposes. Do not delete, but enable when you need memory diagnostics.
# before_script:
# - echo "======== startup memory info ========"
# - free -h -t
# Deliberately splitting the test suite to keep memory pressure low on nodejs process.
# Combining these as a single job may lead to OOM exceptions.
script:
- npm -s run-script jshint
- npm -s run-script unit-arm
- npm -s run-script unit-arm-deployment
- npm -s run-script unit
after_script:
- echo "========== test log: ============"
- pwd
- ls -al
- ls -al test/output
- cat test/output/*.log