Skip to content

Commit

Permalink
Added Jenkinsfile
Browse files Browse the repository at this point in the history
  • Loading branch information
fpoussin committed Jan 13, 2020
1 parent b156498 commit 9d68c69
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 18,14 @@ git submodule update --init'''
sh '''mkdir build
cd build
export HOME=/tmp
qmake QTC_SOURCE=/qtcreator QTC_BUILD=/qtcreator ..
mkdir -p /tmp/.local/share/data/QtProject/qtcreator/plugins
qmake QTC_SOURCE=/qtcreator QTC_BUILD=/qtcreator USE_USER_DESTDIR=no ..
nice make -j $(nproc)'''
}
}

stage('Artifacts') {
steps {
archiveArtifacts(artifacts: '/tmp/.local/share/data/QtProject/qtcreator/plugins/**/*.so', caseSensitive: true, onlyIfSuccessful: true)
archiveArtifacts(artifacts: 'libDoxygen.so', caseSensitive: true, onlyIfSuccessful: true)
}
}

Expand Down

0 comments on commit 9d68c69

Please sign in to comment.