Refactor Jenkinsfile to simplify agent configuration by changing from a specific Docker label to 'any', allowing for more flexible build agent selection.

This commit is contained in:
2026-04-02 11:20:56 -05:00
parent b784ea1cd5
commit 5c18108e79

4
Jenkinsfile vendored
View File

@@ -1,7 +1,5 @@
pipeline {
agent {
label 'docker'
}
agent any
options {
timestamps()
disableConcurrentBuilds()