Test Jenkinsfile for building plate-tool-beta
Gitea Scan/plate-tool/pipeline/head There was a failure building this commit Details

This commit is contained in:
Emilia Allison 2024-01-06 14:49:11 -05:00
parent bce56be33e
commit 034e3133be
1 changed files with 16 additions and 0 deletions

16
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,16 @@
pipeline {
agent "linux_arm"
stages {
stage('Build') {
steps {
scm checkout
sh '''
. "$HOME/.cargo/env"
trunk build --release --public-url "cool-stuff/plate-tool-beta/"
'''
archiveArtifacts "**/dist"
}
}
}
}