This commit is contained in:
Primakov Alexandr Alexandrovich 2020-04-25 18:15:35 +03:00
parent edcfe29f37
commit 0e181095fc
3 changed files with 13 additions and 4 deletions

4
install/unsafe/Jenkinsfile vendored Normal file
View File

@ -0,0 +1,4 @@
stage('install') {
echo 'starting installing'
sh 'npm install --unsafe-perm'
}

4
scripts/install-cypress/Jenkinsfile vendored Normal file
View File

@ -0,0 +1,4 @@
stage ('cypress') {
echo 'installing'
sh 'npm i -g cypress'
}

9
stats/Jenkinsfile vendored
View File

@ -1,8 +1,9 @@
stage('stats') { stage('stats') {
echo 'checking node and npm versions'
sh 'node -v' sh 'node -v'
sh 'npm -v' sh 'npm -v'
sh 'ls -a' // sh 'ls -a'
sh 'df -h' // sh 'df -h'
sh 'free -m' // sh 'free -m'
sh 'vmstat -s' // sh 'vmstat -s'
} }