diff --git a/Jenkinsfile b/Jenkinsfile index 6dc1de1a6..56704a492 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,39 +1,39 @@ pipeline { agent { dockerfile { additionalBuildArgs '--tag arcanist' } } stages { stage('install phabricator'){ steps { sh ''' cd .. - git clone -b stable https://secure.phabricator.com/source/libphutil.git + git clone -b stable https://c4science.ch/source/libphutil.git git clone -b stable https://secure.phabricator.com/diffusion/ARC/arcanist.git ''' sh ''' ./bin/config set mysql.host localhost ./bin/config set mysql.user root ./bin/config set mysql.pass root ./bin/storage upgrade --force ''' } } stage('arcanist') { steps { sh 'arc lint --everything --severity error' } steps { sh 'arc unit --everything --rev HEAD^' } } stage('celerity') { steps { sh './bin/celerity map' } } } post { always { archiveArtifacts artifacts: './resources/celerity/map.php' } } }