Files
double-pendulum/Jenkinsfile
T
flip a26c829f58
gitea/double-pendulum/pipeline/head This commit looks good
chore: Pkg pad aangepast
2026-09-05 18:30:03 +02:00

22 lines
393 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/pkg'
sh 'cp ./index.html /var/www/zwietering.eu/projects/double-pendulum'
}
}
}
post {
cleanup {
cleanWs()
}
}
}