page/Jenkinsfile

21 lines
455 B
Text
Raw Permalink Normal View History

2026-08-16 18:07:49 +08:00
pipeline {
agent any
stages {
stage('Checkout') {
steps {
checkout([$class: 'MercurialSCM', source: 'https://hg.hgdump.net/page', revision: 'default'])
}
}
stage('Configure') {
steps {
sh 'meson setup build'
}
}
stage('Compile') {
steps {
sh 'meson compile -C build'
}
}
}
}