From: vectorcamp-jenkins <82393366+vectorcamp-jenkins@users.noreply.github.com> Date: Tue, 13 Apr 2021 19:52:42 +0000 (+0300) Subject: added basic Jenkinsfile X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=26adf6e43111078c4c57515728094d255ca45fac;p=thirdparty%2Fvectorscan.git added basic Jenkinsfile --- diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 00000000..1883f43a --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,22 @@ +pipeline { + agent { + node { + label 'x86' + } + + } + stages { + stage('Release, SSE') { + agent { + node { + label 'x86' + } + + } + steps { + sh 'mkdir build-release-SSE && cmake -DCMAKE_BUILD_TYPE=Release -C build-release-SSE' + } + } + + } +} \ No newline at end of file