monitarr/.jenkins_builds
Scott E. Graves 93c04d12d0
All checks were successful
Public/monitarr/pipeline/head This commit looks good
fix
2025-03-04 10:54:10 -06:00

62 lines
1.1 KiB
Groovy

#!groovy
pipeline {
agent none
environment {
DEVELOPER_PRIVATE_KEY = "/.ci/monitarr/cert/developer.priv"
DEVELOPER_PUBLIC_KEY = "/.ci/monitarr/cert/developer.pub"
PROJECT_TEST_CONFIG_DIR = "/.ci/monitarr/test_config"
}
options {
disableConcurrentBuilds()
retry(2)
}
stages {
stage('linux_x86_64') {
agent any
steps {
retry(2) {
sleep time: 5, unit: 'SECONDS'
sh 'scripts/make_unix.sh'
}
}
}
stage('mingw64') {
agent any
steps {
retry(2) {
sleep time: 5, unit: 'SECONDS'
sh 'scripts/make_win32.sh'
}
}
}
stage('linux_aarch64') {
agent any
steps {
retry(2) {
sleep time: 5, unit: 'SECONDS'
sh 'scripts/make_unix.sh aarch64'
}
}
}
stage('deliver') {
agent any
steps {
sh 'scripts/deliver.sh /mnt/monitarr "" "" "" "" 1 1'
sh 'scripts/deliver.sh /mnt/monitarr "" aarch64'
sh 'scripts/deliver.sh /mnt/monitarr'
}
}
}
}