get docker working

This commit is contained in:
2025-07-28 19:03:56 -05:00
parent 1ee24a8b6a
commit 5f797dad30
9 changed files with 152 additions and 46 deletions

24
Jenkinsfile vendored
View File

@@ -1,11 +1,23 @@
pipeline {
agent any // Specifies that the pipeline can run on any available agent
agent none
stages {
stage('Hello') { // Defines a stage named 'Hello'
steps {
echo 'Hello World!' // Prints "Hello World!" to the console
stage('Build Matrix') {
matrix {
agent { label "linux" }
axes {
axis {
name 'DISTRO'
values 'debian', 'ubuntu', 'archlinux', 'fedora'
}
}
stages {
stage('Build') {
steps {
echo "Do Build for ${DISTRO}"
}
}
}
}
}
}
}
}