Files
double-pendulum/Jenkinsfile
T
Philippe Zwietering 5d462f9963
gitea/double-pendulum/pipeline/head There was a failure building this commit
build: Andere bouwmanier proberen
2026-09-08 16:34:32 +02:00

23 lines
370 B
Groovy

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