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

This commit is contained in:
2026-01-30 20:17:16 +10:30
parent 7a7b469b54
commit 01b3b7a401

30
JenkinsFile 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)
'''
}
}
}
}