aboutsummaryrefslogtreecommitdiffstats
path: root/Jenkinsfile
diff options
context:
space:
mode:
authorGravatar Tom Willemse2020-10-09 23:12:05 -0700
committerGravatar Tom Willemse2020-10-09 23:12:05 -0700
commit1357f94e7effefe2b194f6c7dea0df7931f87adc (patch)
treec004c260daf1c00777357b0d52a6acb09730222f /Jenkinsfile
parentb052934ced2b8053619d51c56e40d931772636e6 (diff)
downloadnew-ryuslash.org-1357f94e7effefe2b194f6c7dea0df7931f87adc.tar.gz
new-ryuslash.org-1357f94e7effefe2b194f6c7dea0df7931f87adc.zip
Don’t use any agent at all
The syntax for agent any was wrong and the default doesn’t really need an agent.
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index c0788ca..9bb55e9 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -1,5 +1,5 @@
pipeline {
- agent { any }
+ agent none
stages {
stage('Build') {