1
0
mirror of https://github.com/lxsang/ant-http synced 2024-07-01 12:59:47 +02:00

Update Jenkinsfile

This commit is contained in:
Dany LE 2022-07-29 15:28:50 +02:00 committed by GitHub
parent 5f9d8dcf8f
commit 5efad64e9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

10
Jenkinsfile vendored
View File

@ -10,11 +10,11 @@ node {
stage('Build') { stage('Build') {
sshCommand remote: remote, command: '\ sshCommand remote: remote, command: '\
cd $(dirname $(find ~/jenkins/workspace/ant-http@script -name "Jenkinsfile")); \ cd $(dirname $(find ~/jenkins/workspace/ant-http@script -name "Jenkinsfile")); \
libtoolize \ libtoolize; \
aclocal \ aclocal; \
autoconf \ autoconf; \
automake --add-missing \ automake --add-missing; \
make \ make; \
' '
} }
} }