This repository has been archived by the owner on Apr 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #195 from LiskHQ/192-Jenkins_CI
Initial implementation of Jenkins CI - Closes #192
- Loading branch information
Showing
4 changed files
with
91 additions
and
25 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,78 @@ | ||
pipeline { | ||
agent none | ||
environment { | ||
ON_JENKINS = 'TRUE' | ||
} | ||
stages { | ||
stage ('Lisk Provisioning') { | ||
steps { | ||
node('master-nano-01'){ | ||
lock(resource: "master-nano-01", inversePrecedence: true) { | ||
sh '''#!/bin/bash | ||
env | ||
# Clean up old processes | ||
pkill -f selenium -9 || true | ||
pkill -f Xvfb -9 || true | ||
rm -rf /tmp/.X0-lock || true | ||
pkill -f app.js || true | ||
pkill -f webpack-dev-server -9 || true | ||
# Start lisk and make sure its current | ||
cd /var/lib/jenkins/workspace/ | ||
git clone https://github.com/LiskHQ/lisk.git | ||
cd /var/lib/jenkins/workspace/lisk | ||
git checkout development | ||
git pull | ||
dropdb lisk_test || true | ||
createdb lisk_test | ||
psql -d lisk_test -c "alter user "$USER" with password 'password';" | ||
cp /var/lib/jenkins/workspace/lisk-node-Linux-x86_64.tar.gz . | ||
tar -zxvf lisk-node-Linux-x86_64.tar.gz | ||
npm install | ||
git submodule init | ||
git submodule update | ||
cd public | ||
npm install | ||
bower install | ||
grunt release | ||
cd .. | ||
cd test/lisk-js/; npm install; cd ../.. | ||
cp test/config.json test/genesisBlock.json . | ||
export NODE_ENV=test | ||
BUILD_ID=dontKillMe ~/start_lisk.sh | ||
# Build nano | ||
cd $WORKSPACE/src | ||
npm install | ||
# Add coveralls config file | ||
cp ~/.coveralls.yml-nano .coveralls.yml | ||
# Prepare lisk core for testing | ||
bash ~/tx.sh | ||
# Run test | ||
npm run test | ||
# Commented until e2e is ready | ||
# export CHROME_BIN=chromium-browser | ||
# export DISPLAY=:0.0 | ||
# Xvfb :0 -ac -screen 0 1280x1024x24 & | ||
# ./node_modules/protractor/bin/webdriver-manager update | ||
# npm run e2e-test | ||
# Commented until e2e is ready | ||
# cat .protractor.log | ||
# cat .lisk-nano.log | ||
pkill -f app.js -9 || true | ||
pkill -f webpack-dev-server -9 || true | ||
''' | ||
milestone 1 | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters