Skip to content

Commit

Permalink
update scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
devalex88 committed May 9, 2019
1 parent 3b228c0 commit 7335391
Showing 1 changed file with 8 additions and 10 deletions.
18 changes: 8 additions & 10 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,18 +18,16 @@ pipeline {
stage ("Build") {
steps {
lock('katalon-docker-images') {
sh '''
chmod u+x ./build/*.sh
./build/clean.sh $KS_VERSION
./build/build.sh $KS_VERSION
./build/tag.sh $KS_VERSION

chmod u+x ./test/project/*.sh
cd ./test/project && ./run_chrome.sh $KS_VERSION && cd ..
cd ./test/project && ./run_chrome_advanced.sh $KS_VERSION && cd ..
cd ./test/project && ./run_firefox.sh $KS_VERSION && cd ..
'''
sh 'chmod u+x ./build/*.sh'
sh './build/clean.sh $KS_VERSION'
sh './build/build.sh $KS_VERSION'
sh './build/tag.sh $KS_VERSION'

sh 'chmod u+x ./test/project/*.sh'
sh 'cd ./test/project && ./run_chrome.sh $KS_VERSION'
sh 'cd ./test/project && ./run_chrome_advanced.sh $KS_VERSION'
sh 'cd ./test/project && ./run_firefox.sh $KS_VERSION'
archiveArtifacts '**/*.avi'

withDockerRegistry([ credentialsId: "docker-hub", url: "" ]) {
Expand Down

0 comments on commit 7335391

Please sign in to comment.