Files
double-pendulum/Jenkinsfile
T
Philippe Zwietering 4e7260ff92
gitea/double-pendulum/pipeline/head This commit looks good
Used internal build tooling to pack index
2026-09-08 14:57:18 +02:00

21 lines
313 B
Groovy

pipeline {
agent any
stages {
stage('Check') {
steps {
sh 'cargo check'
}
}
stage('Build') {
steps {
sh 'wasm-pack build --target web --out-dir /var/www/zwietering.eu/projects/double-pendulum/'
}
}
}
post {
cleanup {
cleanWs()
}
}
}