Initial commit

This commit is contained in:
2026-05-30 22:48:53 -03:00
commit eacdd18165
35 changed files with 828 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
def withDockerImage(String imageName, Closure cmd) {
docker.image(imageName).inside() {
cmd()
}
}

View File

@@ -0,0 +1,3 @@
def call(String configName) {
return 'built-in'
}

View File

@@ -0,0 +1,39 @@
pipeline {
agent any
stages {
stage('check for game updates') {
steps {
}
}
stage('download game') {
steps {
script {
withCredentials([string(credentialsId: 'ssh_key-root_at_banana', variable: 'API_KEY')]) {
sh "wget https://nexus.cloud.velha.casa/repository/static-hosted/peak-crack-files.zip"
}
}
}
}
stage('patch game') {
steps {
}
}
stage('upload files') {
steps {
}
}
stage('notify') {
steps {
}
}
}
}