Files
double-pendulum/Jenkinsfile
T
flip 61dc5cc9c3
gitea/double-pendulum/pipeline/head This commit looks good
build: Bouwstap van code toegevoegd
2026-09-05 17:53:49 +02:00

21 lines
348 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()
}
}
}