Compare commits

...

3 Commits

Author SHA1 Message Date
Travis Ralston fc698d63dd
Update jenkins.sh 2019-04-17 12:29:44 -06:00
Travis Ralston b893ea3bdb
Update jenkins.sh 2019-04-17 12:22:40 -06:00
Travis Ralston a5592d5c1f
Update jenkins.sh 2019-04-17 12:18:05 -06:00
1 changed files with 1 additions and 13 deletions

View File

@ -1,12 +1,6 @@
#!/bin/bash #!/bin/bash
set -e set -ex
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"
nvm use 10
set -x
# check out corresponding branches of dependencies. # check out corresponding branches of dependencies.
# clone the deps with depth 1: we know we will only ever need that one commit. # clone the deps with depth 1: we know we will only ever need that one commit.
@ -14,12 +8,6 @@ set -x
yarn install yarn install
# run the mocha tests
yarn test
# run eslint
yarn lintall -- -f checkstyle -o eslint.xml || true
rm dist/riot-*.tar.gz || true # rm previous artifacts without failing if it doesn't exist rm dist/riot-*.tar.gz || true # rm previous artifacts without failing if it doesn't exist
# Since the deps are fetched from git, we can rev-parse # Since the deps are fetched from git, we can rev-parse