mirror of
https://github.com/VectorCamp/vectorscan.git
synced 2025-06-28 16:41:01 +03:00
22 lines
301 B
Groovy
22 lines
301 B
Groovy
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'
|
|
}
|
|
}
|
|
|
|
}
|
|
} |