mirror of
https://github.com/Foundry376/Mailspring.git
synced 2024-11-11 01:54:40 +08:00
971089aeb0
Have the test output
15 lines
438 B
Bash
Executable file
15 lines
438 B
Bash
Executable file
#!/bin/sh
|
|
# N1 Jenkins must run a shell script.
|
|
#
|
|
# We also set the Keychain credentials inside of Jenkins Credentials
|
|
# instead of plain text files.
|
|
#
|
|
# The credentials for the Keychain are availble via the Jenkins-injected
|
|
# KEYCHAIN_ACCESS environment variable.
|
|
|
|
set -e
|
|
|
|
echo "---> $(npm --version)"
|
|
echo "---> $(node --version)"
|
|
script/bootstrap
|
|
build/node_modules/.bin/grunt ci --gruntfile build/Gruntfile.coffee --stack --no-color;
|