Update Jenkinsfile
Some checks failed
CI / build (push) Has been cancelled

This commit is contained in:
2026-01-30 20:18:52 +10:30
parent 01b3b7a401
commit d509c399d5

30
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,30 @@
pipeline {
agent any
stages {
stage('Checkout') {
steps {
checkout scm
}
}
stage('Configure') {
steps {
sh '''
mkdir -p build
cd build
cmake ..
'''
}
}
stage('Build') {
steps {
sh '''
cd build
make -j$(nproc)
'''
}
}
}
}