Files
PokemonEmeraldSafariFrontier/Jenkinsfile
dionmoustos d509c399d5
Some checks failed
CI / build (push) Has been cancelled
Update Jenkinsfile
2026-01-30 20:18:52 +10:30

31 lines
536 B
Groovy

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