Skip to content

Commit

Permalink
Always use virtual machines for agents
Browse files Browse the repository at this point in the history
jenkins-infra/helpdesk#4490 notes that
Windows builds for plugins that use container agents are not starting.

https://status.jenkins.io/issues/2025-01-08-ci.jenkins.io-azure-outage/
reports the outage is due to an Azure Container Instance (ACI) outage
in the region where we host the ci.jenkins.io agents.
  • Loading branch information
MarkEWaite committed Jan 10, 2025
1 parent 2cbdfc5 commit f569fbf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions vars/buildPlugin.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ def call(Map params = [:]) {
def useArtifactCachingProxy = params.containsKey('useArtifactCachingProxy') ? params.useArtifactCachingProxy : true

def useContainerAgent = params.containsKey('useContainerAgent') ? params.useContainerAgent : false
// TODO: Remove when https://github.com/jenkins-infra/helpdesk/issues/4490 is resolved
useContainerAgent = false
def forkCount = params.containsKey('forkCount') ? params.forkCount : null
if (forkCount) {
echo "Running parallel tests with forkCount=${forkCount}"
Expand Down

0 comments on commit f569fbf

Please sign in to comment.