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

This commit is contained in:
2026-04-02 10:06:53 -05:00
parent 33fb1b1b50
commit 22e69b07ee

5
Jenkinsfile vendored
View File

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