mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-09-30 11:44:28 +03:00
added basic Jenkinsfile
This commit is contained in:
22
Jenkinsfile
vendored
Normal file
22
Jenkinsfile
vendored
Normal file
@@ -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'
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user