From 54108c642bd5841912b7e3d83cf0165b35f7cc25 Mon Sep 17 00:00:00 2001 From: David Kalmin Date: Tue, 10 May 2022 14:32:07 -0700 Subject: [PATCH 01/59] Initial commit to Valet Labs --- .devcontainer/devcontainer.json | 26 ++ .github/workflows/valetbsazdo.yml | 35 +++ azure_devops/bootstrap/azDevOps.ps1 | 167 ++++++++++++ azure_devops/bootstrap/updateEnvs.ps1 | 21 ++ .../pipelines/classic/valet-classic1.json | 243 ++++++++++++++++++ .../pipelines/classic/valet-classic2.json | 243 ++++++++++++++++++ azure_devops/pipelines/readme.md | 10 + .../pipelines/yml/valet-mapper-example.yml | 29 +++ .../pipelines/yml/valet-pipeline1.yml | 19 ++ .../pipelines/yml/valet-pipeline2.yml | 19 ++ azure_devops/readme.md | 111 ++++++++ azure_devops/valet-audit-lab.md | 44 ++++ azure_devops/valet-dry-run-lab.md | 49 ++++ azure_devops/valet-forecast-lab.md | 3 + azure_devops/valet-migrate-custom-lab.md | 88 +++++++ azure_devops/valet-migrate-lab.md | 49 ++++ code/Bootcamp.sln | 56 ++++ code/readme.md | 5 + code/src/Attendee/Attendee.cs | 15 ++ code/src/Attendee/Attendee.csproj | 7 + code/test/AttendeeTest/AttendeeExists.cs | 18 ++ code/test/AttendeeTest/AttendeeTest.csproj | 26 ++ jenkins/readme.md | 1 + readme.md | 16 ++ valet/.env.local | 6 + valet/valet | 27 ++ valet/valet-update | 10 + 27 files changed, 1343 insertions(+) create mode 100644 .devcontainer/devcontainer.json create mode 100644 .github/workflows/valetbsazdo.yml create mode 100644 azure_devops/bootstrap/azDevOps.ps1 create mode 100644 azure_devops/bootstrap/updateEnvs.ps1 create mode 100644 azure_devops/pipelines/classic/valet-classic1.json create mode 100644 azure_devops/pipelines/classic/valet-classic2.json create mode 100644 azure_devops/pipelines/readme.md create mode 100644 azure_devops/pipelines/yml/valet-mapper-example.yml create mode 100644 azure_devops/pipelines/yml/valet-pipeline1.yml create mode 100644 azure_devops/pipelines/yml/valet-pipeline2.yml create mode 100644 azure_devops/readme.md create mode 100644 azure_devops/valet-audit-lab.md create mode 100644 azure_devops/valet-dry-run-lab.md create mode 100644 azure_devops/valet-forecast-lab.md create mode 100644 azure_devops/valet-migrate-custom-lab.md create mode 100644 azure_devops/valet-migrate-lab.md create mode 100644 code/Bootcamp.sln create mode 100644 code/readme.md create mode 100644 code/src/Attendee/Attendee.cs create mode 100644 code/src/Attendee/Attendee.csproj create mode 100644 code/test/AttendeeTest/AttendeeExists.cs create mode 100644 code/test/AttendeeTest/AttendeeTest.csproj create mode 100644 jenkins/readme.md create mode 100644 readme.md create mode 100644 valet/.env.local create mode 100644 valet/valet create mode 100644 valet/valet-update diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json new file mode 100644 index 0000000..3e2e04b --- /dev/null +++ b/.devcontainer/devcontainer.json @@ -0,0 +1,26 @@ +{ + "name": "Codespace to bootstrap valet in a Codespace", + //Use base codespace image then pull Valet on postCreateCommand, + "image": "mcr.microsoft.com/vscode/devcontainers/universal:linux", + "remoteUser": "codespace", + "overrideCommand": false, + "mounts": ["source=codespaces-linux-var-lib-docker,target=/var/lib/docker,type=volume"], + "runArgs": [ + "--cap-add=SYS_PTRACE", + "--security-opt", + "seccomp=unconfined", + "--privileged", + "--init" + ], + + // Add the IDs of extensions you want installed when the container is created. + "extensions": [ + "GitHub.vscode-pull-request-github", + "ms-vscode.azure-account", + "ms-vscode.azurecli", + "ms-azure-devops.azure-pipelines", + "ms-azuretools.vscode-docker", + "ms-vscode.powershell" + ], + "postCreateCommand": "docker login ghcr.io/valet-customers --username ${GITHUB_USER} --password ${VALET_PASSWORD} && docker pull ghcr.io/valet-customers/valet-cli:latest && chmod +x ./valet/valet-update && chmod +x ./valet/valet && pwsh ./azure_devops/bootstrap/updateEnvs.ps1 -ghPAT ${VALET_PASSWORD} -azdoPAT ${AZDO_TOKEN} -org ${AZDO_ORG} -proj ${AZDO_PROJECT} || echo 'Could not auto-build. Skipping.' " +} diff --git a/.github/workflows/valetbsazdo.yml b/.github/workflows/valetbsazdo.yml new file mode 100644 index 0000000..46d9750 --- /dev/null +++ b/.github/workflows/valetbsazdo.yml @@ -0,0 +1,35 @@ +# This is a workflow to set up an Azure DevOps instance seeded with pipelines +# You need to Add a secret for an Azure DevOps PAT called AZDOPAT + +name: Valet Bootstrap for Azure DevOps + +on: + # Allows you to run this workflow manually from the Actions tab + workflow_dispatch: + inputs: + AzDoOrgName: + description: 'Azure DevOps organization name' + required: true + type: string + AzDoUserName: + description: 'Azure DevOps user name' + required: true + type: string + AzDoProjectName: + description: 'Azure DevOps project name' + default: 'ValetBootstrap' + type: string +jobs: + bootstrap: + name: Bootstrap + runs-on: windows-latest + steps: + - name: Check out repository code + uses: actions/checkout@v2 + - name: Run powershell file to bootstrap Azure DevOps + env: + AZDOPATTOUSE: ${{ secrets.AZDOPAT }} + ROOTFOLDER: ${{ github.workspace }} + shell: pwsh + run: | + ./azure_devops/bootstrap/azDevOps.ps1 -project ${{ github.event.inputs.AzDoProjectName }} -userName ${{ github.event.inputs.AzDoUserName }} -repoName ${{ github.event.inputs.AzDoProjectName }} -orgToUse ${{ github.event.inputs.AzDoOrgName }} -rootFolder $env:ROOTFOLDER -daPassword $env:AZDOPATTOUSE diff --git a/azure_devops/bootstrap/azDevOps.ps1 b/azure_devops/bootstrap/azDevOps.ps1 new file mode 100644 index 0000000..626de9e --- /dev/null +++ b/azure_devops/bootstrap/azDevOps.ps1 @@ -0,0 +1,167 @@ +param ( + $project = "ValetBootstrap", + $repoName = "ValetBootstrap", + $codeFolder= "code,azure_devops/pipelines", + $rootFolder= ".", + $pipelinesRoot="azure_devops/pipelines", + [String]$orgToUse = "..", + [String]$userName=$(Throw "Azure DevOps Username required."), + [String]$daPassword=$(Throw "Password required.") + ) + +Write-Host "Start Valet Bootstrap" +Write-Host "Azure DevOps Organization to use $orgToUse" +Write-Host "Azure DevOps Project to use $project" +Write-Host "Repo Name $repoName" +Write-Host "Code Folders: $codeFolder" +Write-Host "Root Folders: $rootFolder" +Write-Host "Pipelines Folders: $pipelinesRoot" +Write-Host "Azure DevOps username to authenticate with $userName" +Write-Host "Azure DevOps PAT to authenticate with $daPassword" + +function Get-BasicAuthCreds { + param([string]$Username,[String]$Password) + $AuthString = "{0}:{1}" -f $Username,$Password + $AuthBytes = [System.Text.Encoding]::Ascii.GetBytes($AuthString) + return [Convert]::ToBase64String($AuthBytes) +} + +#Get the creds to use in all GitHub API calls. +$BasicCreds = Get-BasicAuthCreds -Username "$userName" -Password $daPassword + +########################################################################## +#CREATE THE AZURE DEVOPS PROJECT +$createtUrlToUse = [string]::Format("https://dev.azure.com/{0}/_apis/projects?api-version=6.0", $orgToUse) + +$projectToCreate = @{ + "name"= "$project" + "description"= "Project to be used for Valet Demos" + "capabilities"= @{ + "versioncontrol"= @{ + "sourceControlType"= "Git" + } + "processTemplate"= @{ + "templateTypeId"= "6b724908-ef14-45cf-84f8-768b5384da45" + } + } + } + +$projectResponse = Invoke-RestMethod -Method 'Post' -Uri $createtUrlToUse -Headers @{"Authorization"="Basic $BasicCreds"} -Body ($projectToCreate|ConvertTo-Json) -ContentType "application/json" +$projectResponse | ConvertTo-Json + +Start-Sleep -s 5 +Write-Host "Yes! Project $project was created!" + +########################################################################## +# IMPORT THE REPO +Set-Location $rootFolder + +[array]$folderArray = $codeFolder.Split(",") + +$addTextFile = @{ + "refUpdates"= @( + @{ + "name"= "refs/heads/main" + "oldObjectId"= "0000000000000000000000000000000000000000" + } + ) + "commits"= @( + @{ + "comment"= "Initial commit." + "changes"= @( + foreach ($folder in $folderArray) + { + $codeRootFolder = Join-Path -Path $rootFolder -ChildPath $folder + Write-Host "codeRootFolder: $codeRootFolder" + + $itemPath = $folder.Substring($folder.lastIndexOf('/') + 1) + Write-Host "itemPath: $itemPath" + + $codeFiles = (Get-ChildItem "$codeRootFolder" -Recurse -Attributes !Directory) + foreach ($codeFile in $codeFiles ) { + $daFullName = $codeFile.FullName + $codeBody = (Get-Content "$daFullName" -Raw) + #Write-Host "codeBody: $codeBody" + Write-Host "folder: $folder" + $relath = $daFullName | Resolve-Path -Relative + Write-Host "relath: $relath" + $replaceSlash = $folder.Replace("/", "\") + $repoPath = $relath.Substring($relath.lastIndexOf($replaceSlash) + $replaceSlash.Length) + $wholeRepoPath = Join-Path -Path $itemPath -ChildPath $repoPath + $wholeRepoPath = $wholeRepoPath.Replace("\", "/") + Write-Host "wholeRepoPath: $wholeRepoPath" + Write-Host "repoPath: $repoPath" + @{ + "changeType"= "add" + "item"= @{ + "path"= "/$wholeRepoPath" + } + "newContent"= @{ + "content"= "$codeBody" + "contentType"= "rawtext" + } + } + } + } + ) + } + ) + } + + +$repoUrlToUse = [string]::Format("https://dev.azure.com/{0}/{2}/_apis/git/repositories/{1}/pushes?api-version=7.1-preview.2", $orgToUse, $repoName, $project) +$pushResponse = Invoke-RestMethod -Method 'Post' -Uri $repoUrlToUse -Headers @{"Authorization"="Basic $BasicCreds"} -Body ($addTextFile|ConvertTo-Json -Depth 5) -ContentType "application/json" +$repoIds = $pushResponse.repository.id +Write-Host "Yes! Repo Was was created!" + +Write-Host "Yes! Repo was imported into $repoIds" + +########################################################################## +########################################################################## +# Create YML Pipelines +$plUrlToUse = [string]::Format("https://dev.azure.com/{0}/{1}/_apis/pipelines?api-version=6.0-preview.1", $orgToUse, "$project") + +$files = Get-ChildItem ".\$pipelinesRoot\yml\" +foreach ($f in $files) +{ + $nameOfPl = $f.BaseName + $fileName = $f.Name + Write-Host "basename: $nameOfPl filename: $fileName" + + $pipelineCreateBody = @{ + "folder"= "pipelines" + "name"= "$nameOfPl" + "configuration"= @{ + "type"= "yaml" + "path"= "/pipelines/yml/$fileName" + "repository"= @{ + "id"= "$repoIds" + "name"= "$repoName" + "type"= "azureReposGit" + } + } + } + #$pipelineCreateBody | ConvertTo-Json + + $repoResponse = Invoke-RestMethod -Method 'Post' -Uri $plUrlToUse -Headers @{"Authorization"="Basic $BasicCreds"} -Body ($pipelineCreateBody|ConvertTo-Json) -ContentType "application/json" + $repoResponse | ConvertTo-Json +} + +########################################################################## +#CREATE CLASSIC PIPELINEs + +$classicUrlToUse = [string]::Format("https://dev.azure.com/{0}/{1}/_apis/build/definitions?api-version=7.1-preview.7", $orgToUse, "$project") + +$files = Get-ChildItem ".\$pipelinesRoot\classic\" +foreach ($f in $files) +{ + $nameOfPl = $f.BaseName + $fileName = $f.Name + Write-Host "basename: $nameOfPl filename: $fileName" + + $pclassicreateBody = (Get-Content ./$pipelinesRoot/classic/$fileName).Replace("REPOTOREPLACE", "$repoName") + + $repo2Response = Invoke-RestMethod -Method 'Post' -Uri $classicUrlToUse -Headers @{"Authorization"="Basic $BasicCreds"} -Body ($pclassicreateBody) -ContentType "application/json" + $repo2Response | ConvertTo-Json +} +Write-Host "End Valet Bootstrap" diff --git a/azure_devops/bootstrap/updateEnvs.ps1 b/azure_devops/bootstrap/updateEnvs.ps1 new file mode 100644 index 0000000..04bbaec --- /dev/null +++ b/azure_devops/bootstrap/updateEnvs.ps1 @@ -0,0 +1,21 @@ +param ( + [String]$proj = "ValetBootstrapper", + [String]$org = "microsoft-bootcamp", + [String]$ghPAT = "dkalmintest", + [String]$azdoPAT = "dkalmin@github.com" + ) + +[String]$azdoProject = "AZURE_DEVOPS_PROJECT=" +[String]$azdoOrg = "AZURE_DEVOPS_ORGANIZATION=" +[String]$azdoInstance = "AZURE_DEVOPS_INSTANCE_URL=" +[String]$ghAccess = "GITHUB_ACCESS_TOKEN=" +[String]$azdoAccess = "AZURE_DEVOPS_ACCESS_TOKEN=" + +$updateEnvs = (Get-Content ./valet/.env.local) + +$updateEnvs = $updateEnvs.Replace("$azdoProject", "AZURE_DEVOPS_PROJECT=$proj") +$updateEnvs = $updateEnvs.Replace("$azdoOrg", "AZURE_DEVOPS_ORGANIZATION=$org") +$updateEnvs = $updateEnvs.Replace("$azdoInstance", "AZURE_DEVOPS_INSTANCE_URL=https://dev.azure.com/$org") +$updateEnvs = $updateEnvs.Replace("$ghAccess", "GITHUB_ACCESS_TOKEN=$ghPAT") +$updateEnvs = $updateEnvs.Replace("$azdoAccess", "AZURE_DEVOPS_ACCESS_TOKEN=$azdoPAT") +Set-Content -Path ./valet/.env.local -Value $updateEnvs diff --git a/azure_devops/pipelines/classic/valet-classic1.json b/azure_devops/pipelines/classic/valet-classic1.json new file mode 100644 index 0000000..1ade862 --- /dev/null +++ b/azure_devops/pipelines/classic/valet-classic1.json @@ -0,0 +1,243 @@ +{ + "options": [ + { + "enabled": true, + "definition": { + "id": "5d58cc01-7c75-450c-be18-a388ddb129ec" + }, + "inputs": { + "branchFilters": "[\"+refs/heads/*\"]", + "additionalFields": "{}" + } + }, + { + "enabled": false, + "definition": { + "id": "a9db38f9-9fdc-478c-b0f9-464221e58316" + }, + "inputs": { + "workItemType": "Task", + "assignToRequestor": "true", + "additionalFields": "{}" + } + } + ], + "variables": { + "BuildConfiguration": { + "value": "release", + "allowOverride": true + }, + "BuildPlatform": { + "value": "any cpu", + "allowOverride": true + }, + "system.debug": { + "value": "false", + "allowOverride": true + } + }, + "properties": {}, + "tags": [], + "_links": [], + "buildNumberFormat": "$(date:yyyyMMdd)$(rev:.r)", + "jobAuthorizationScope": 1, + "jobTimeoutInMinutes": 60, + "jobCancelTimeoutInMinutes": 5, + "process": { + "phases": [ + { + "steps": [ + { + "environment": {}, + "enabled": true, + "continueOnError": false, + "alwaysRun": false, + "displayName": "Use NuGet 4.4.1", + "timeoutInMinutes": 0, + "retryCountOnTaskFailure": 0, + "condition": "succeeded()", + "task": { + "id": "2c65196a-54fd-4a02-9be8-d9d1837b7c5d", + "versionSpec": "0.*", + "definitionType": "task" + }, + "inputs": { + "versionSpec": "4.4.1", + "checkLatest": "false" + } + }, + { + "environment": {}, + "enabled": true, + "continueOnError": false, + "alwaysRun": false, + "displayName": "NuGet restore", + "timeoutInMinutes": 0, + "retryCountOnTaskFailure": 0, + "condition": "succeeded()", + "task": { + "id": "333b11bd-d341-40d9-afcf-b32d5ce6f23b", + "versionSpec": "2.*", + "definitionType": "task" + }, + "inputs": { + "command": "restore", + "solution": "$(Parameters.solution)", + "selectOrConfig": "select", + "feedRestore": "", + "includeNuGetOrg": "true", + "nugetConfigPath": "", + "externalEndpoints": "", + "noCache": "false", + "disableParallelProcessing": "false", + "packagesDirectory": "", + "verbosityRestore": "Detailed", + "searchPatternPush": "$(Build.ArtifactStagingDirectory)/**/*.nupkg;!$(Build.ArtifactStagingDirectory)/**/*.symbols.nupkg", + "nuGetFeedType": "internal", + "feedPublish": "", + "publishPackageMetadata": "true", + "allowPackageConflicts": "false", + "externalEndpoint": "", + "verbosityPush": "Detailed", + "searchPatternPack": "**/*.csproj", + "configurationToPack": "$(BuildConfiguration)", + "outputDir": "$(Build.ArtifactStagingDirectory)", + "versioningScheme": "off", + "includeReferencedProjects": "false", + "versionEnvVar": "", + "requestedMajorVersion": "1", + "requestedMinorVersion": "0", + "requestedPatchVersion": "0", + "packTimezone": "utc", + "includeSymbols": "false", + "toolPackage": "false", + "buildProperties": "", + "basePath": "", + "verbosityPack": "Detailed", + "arguments": "" + } + }, + { + "environment": {}, + "enabled": true, + "continueOnError": false, + "alwaysRun": false, + "displayName": "PowerShell Script", + "timeoutInMinutes": 0, + "retryCountOnTaskFailure": 0, + "condition": "succeeded()", + "task": { + "id": "e213ff0f-5d5c-4791-802d-52ea3e7be1f1", + "versionSpec": "2.*", + "definitionType": "task" + }, + "inputs": { + "targetType": "inline", + "filePath": "", + "arguments": "", + "script": "# Write your PowerShell commands here.\n\nWrite-Host \"Hello World\"\n", + "errorActionPreference": "stop", + "warningPreference": "default", + "informationPreference": "default", + "verbosePreference": "default", + "debugPreference": "default", + "failOnStderr": "false", + "showWarnings": "false", + "ignoreLASTEXITCODE": "false", + "pwsh": "false", + "workingDirectory": "", + "runScriptInSeparateScope": "false" + } + } + ], + "name": "Agent job 1", + "refName": "Job_1", + "condition": "succeeded()", + "target": { + "executionOptions": { + "type": 0 + }, + "allowScriptsAuthAccessOption": false, + "type": 1 + }, + "jobAuthorizationScope": 1 + } + ], + "target": { + "agentSpecification": { + "identifier": "windows-latest" + } + }, + "type": 1 + }, + "repository": { + "properties": { + "cleanOptions": "0", + "labelSources": "0", + "labelSourcesFormat": "$(build.buildNumber)", + "reportBuildStatus": "true", + "gitLfsSupport": "false", + "skipSyncSource": "false", + "checkoutNestedSubmodules": "false", + "fetchDepth": "0" + }, + "id": "", + "type": "TfsGit", + "name": "REPOTOREPLACE", + "url": "", + "defaultBranch": "refs/heads/main", + "clean": "false", + "checkoutSubmodules": false + }, + "processParameters": { + "inputs": [ + { + "aliases": [], + "options": {}, + "properties": {}, + "name": "solution", + "label": "Solution", + "defaultValue": "**\\*.sln", + "required": true, + "type": "filePath", + "helpMarkDown": "The path to the Visual Studio solution file or NuGet packages.config. Wildcards can be used. For example, `**\\\\*.sln` for all sln files in all sub folders." + } + ] + }, + "quality": 1, + "authoredBy": { + "displayName": "David Kalmin", + "url": "https://spsprodcus5.vssps.visualstudio.com/A8ceff4ff-6429-4de3-9c39-fd7f0b1fb05a/_apis/Identities/a886d3a4-5700-6920-a3e4-6dadf46e7614", + "_links": { + "avatar": { + "href": "https://dev.azure.com/microsoft-bootcamp/_apis/GraphProfile/MemberAvatars/aad.YTg4NmQzYTQtNTcwMC03OTIwLWEzZTQtNmRhZGY0NmU3NjE0" + } + }, + "id": "a886d3a4-5700-6920-a3e4-6dadf46e7614", + "uniqueName": "davidkalmin@microsoft.com", + "imageUrl": "https://dev.azure.com/microsoft-bootcamp/_apis/GraphProfile/MemberAvatars/aad.YTg4NmQzYTQtNTcwMC03OTIwLWEzZTQtNmRhZGY0NmU3NjE0", + "descriptor": "aad.YTg4NmQzYTQtNTcwMC03OTIwLWEzZTQtNmRhZGY0NmU3NjE0" + }, + "drafts": [], + "queue": { + "_links": { + "self": { + "href": "https://dev.azure.com/microsoft-bootcamp/_apis/build/Queues/126" + } + }, + "name": "Azure Pipelines", + "url": "https://dev.azure.com/microsoft-bootcamp/_apis/build/Queues/126", + "pool": { + "name": "Azure Pipelines", + "isHosted": true + } + }, + "id": 10, + "name": "valet-classic-test-import1", + "uri": "vstfs:///Build/Definition/10", + "path": "\\", + "type": 2, + "queueStatus": 0, + "revision": 1, + "createdDate": "2022-02-17T19:05:52.500Z", +} diff --git a/azure_devops/pipelines/classic/valet-classic2.json b/azure_devops/pipelines/classic/valet-classic2.json new file mode 100644 index 0000000..fa966c1 --- /dev/null +++ b/azure_devops/pipelines/classic/valet-classic2.json @@ -0,0 +1,243 @@ +{ + "options": [ + { + "enabled": true, + "definition": { + "id": "5d58cc01-7c75-450c-be18-a388ddb129ec" + }, + "inputs": { + "branchFilters": "[\"+refs/heads/*\"]", + "additionalFields": "{}" + } + }, + { + "enabled": false, + "definition": { + "id": "a9db38f9-9fdc-478c-b0f9-464221e58316" + }, + "inputs": { + "workItemType": "Task", + "assignToRequestor": "true", + "additionalFields": "{}" + } + } + ], + "variables": { + "BuildConfiguration": { + "value": "release", + "allowOverride": true + }, + "BuildPlatform": { + "value": "any cpu", + "allowOverride": true + }, + "system.debug": { + "value": "false", + "allowOverride": true + } + }, + "properties": {}, + "tags": [], + "_links": [], + "buildNumberFormat": "$(date:yyyyMMdd)$(rev:.r)", + "jobAuthorizationScope": 1, + "jobTimeoutInMinutes": 60, + "jobCancelTimeoutInMinutes": 5, + "process": { + "phases": [ + { + "steps": [ + { + "environment": {}, + "enabled": true, + "continueOnError": false, + "alwaysRun": false, + "displayName": "Use NuGet 4.4.1", + "timeoutInMinutes": 0, + "retryCountOnTaskFailure": 0, + "condition": "succeeded()", + "task": { + "id": "2c65196a-54fd-4a02-9be8-d9d1837b7c5d", + "versionSpec": "0.*", + "definitionType": "task" + }, + "inputs": { + "versionSpec": "4.4.1", + "checkLatest": "false" + } + }, + { + "environment": {}, + "enabled": true, + "continueOnError": false, + "alwaysRun": false, + "displayName": "NuGet restore", + "timeoutInMinutes": 0, + "retryCountOnTaskFailure": 0, + "condition": "succeeded()", + "task": { + "id": "333b11bd-d341-40d9-afcf-b32d5ce6f23b", + "versionSpec": "2.*", + "definitionType": "task" + }, + "inputs": { + "command": "restore", + "solution": "$(Parameters.solution)", + "selectOrConfig": "select", + "feedRestore": "", + "includeNuGetOrg": "true", + "nugetConfigPath": "", + "externalEndpoints": "", + "noCache": "false", + "disableParallelProcessing": "false", + "packagesDirectory": "", + "verbosityRestore": "Detailed", + "searchPatternPush": "$(Build.ArtifactStagingDirectory)/**/*.nupkg;!$(Build.ArtifactStagingDirectory)/**/*.symbols.nupkg", + "nuGetFeedType": "internal", + "feedPublish": "", + "publishPackageMetadata": "true", + "allowPackageConflicts": "false", + "externalEndpoint": "", + "verbosityPush": "Detailed", + "searchPatternPack": "**/*.csproj", + "configurationToPack": "$(BuildConfiguration)", + "outputDir": "$(Build.ArtifactStagingDirectory)", + "versioningScheme": "off", + "includeReferencedProjects": "false", + "versionEnvVar": "", + "requestedMajorVersion": "1", + "requestedMinorVersion": "0", + "requestedPatchVersion": "0", + "packTimezone": "utc", + "includeSymbols": "false", + "toolPackage": "false", + "buildProperties": "", + "basePath": "", + "verbosityPack": "Detailed", + "arguments": "" + } + }, + { + "environment": {}, + "enabled": true, + "continueOnError": false, + "alwaysRun": false, + "displayName": "PowerShell Script", + "timeoutInMinutes": 0, + "retryCountOnTaskFailure": 0, + "condition": "succeeded()", + "task": { + "id": "e213ff0f-5d5c-4791-802d-52ea3e7be1f1", + "versionSpec": "2.*", + "definitionType": "task" + }, + "inputs": { + "targetType": "inline", + "filePath": "", + "arguments": "", + "script": "# Write your PowerShell commands here.\n\nWrite-Host \"Hello World\"\n", + "errorActionPreference": "stop", + "warningPreference": "default", + "informationPreference": "default", + "verbosePreference": "default", + "debugPreference": "default", + "failOnStderr": "false", + "showWarnings": "false", + "ignoreLASTEXITCODE": "false", + "pwsh": "false", + "workingDirectory": "", + "runScriptInSeparateScope": "false" + } + } + ], + "name": "Agent job 1", + "refName": "Job_1", + "condition": "succeeded()", + "target": { + "executionOptions": { + "type": 0 + }, + "allowScriptsAuthAccessOption": false, + "type": 1 + }, + "jobAuthorizationScope": 1 + } + ], + "target": { + "agentSpecification": { + "identifier": "windows-latest" + } + }, + "type": 1 + }, + "repository": { + "properties": { + "cleanOptions": "0", + "labelSources": "0", + "labelSourcesFormat": "$(build.buildNumber)", + "reportBuildStatus": "true", + "gitLfsSupport": "false", + "skipSyncSource": "false", + "checkoutNestedSubmodules": "false", + "fetchDepth": "0" + }, + "id": "", + "type": "TfsGit", + "name": "REPOTOREPLACE", + "url": "", + "defaultBranch": "refs/heads/main", + "clean": "false", + "checkoutSubmodules": false + }, + "processParameters": { + "inputs": [ + { + "aliases": [], + "options": {}, + "properties": {}, + "name": "solution", + "label": "Solution", + "defaultValue": "**\\*.sln", + "required": true, + "type": "filePath", + "helpMarkDown": "The path to the Visual Studio solution file or NuGet packages.config. Wildcards can be used. For example, `**\\\\*.sln` for all sln files in all sub folders." + } + ] + }, + "quality": 1, + "authoredBy": { + "displayName": "David Kalmin", + "url": "https://spsprodcus5.vssps.visualstudio.com/A8ceff4ff-6429-4de3-9c39-fd7f0b1fb05a/_apis/Identities/a886d3a4-5700-6920-a3e4-6dadf46e7614", + "_links": { + "avatar": { + "href": "https://dev.azure.com/microsoft-bootcamp/_apis/GraphProfile/MemberAvatars/aad.YTg4NmQzYTQtNTcwMC03OTIwLWEzZTQtNmRhZGY0NmU3NjE0" + } + }, + "id": "a886d3a4-5700-6920-a3e4-6dadf46e7614", + "uniqueName": "davidkalmin@microsoft.com", + "imageUrl": "https://dev.azure.com/microsoft-bootcamp/_apis/GraphProfile/MemberAvatars/aad.YTg4NmQzYTQtNTcwMC03OTIwLWEzZTQtNmRhZGY0NmU3NjE0", + "descriptor": "aad.YTg4NmQzYTQtNTcwMC03OTIwLWEzZTQtNmRhZGY0NmU3NjE0" + }, + "drafts": [], + "queue": { + "_links": { + "self": { + "href": "https://dev.azure.com/microsoft-bootcamp/_apis/build/Queues/126" + } + }, + "name": "Azure Pipelines", + "url": "https://dev.azure.com/microsoft-bootcamp/_apis/build/Queues/126", + "pool": { + "name": "Azure Pipelines", + "isHosted": true + } + }, + "id": 10, + "name": "valet-classic-test-import2", + "uri": "vstfs:///Build/Definition/10", + "path": "\\", + "type": 2, + "queueStatus": 0, + "revision": 1, + "createdDate": "2022-02-17T19:05:52.500Z", +} diff --git a/azure_devops/pipelines/readme.md b/azure_devops/pipelines/readme.md new file mode 100644 index 0000000..40258f9 --- /dev/null +++ b/azure_devops/pipelines/readme.md @@ -0,0 +1,10 @@ +# pipelines folder +This folder contains Azure DevOps pipelines that gets migrated to the Azure DevOps instance. + +### Note any file added to this folder or sub folders will get migrated to the Azure DevOps instance when the GitHub Action runs to create and bootstrap the Azure DevOps project + +## classic folder +The classic folder contains classic style Azure DevOps pipelines that are pure JSON files. + +## yml folder +The yml folder contains yml Azure DevOps pipelines. diff --git a/azure_devops/pipelines/yml/valet-mapper-example.yml b/azure_devops/pipelines/yml/valet-mapper-example.yml new file mode 100644 index 0000000..8220c95 --- /dev/null +++ b/azure_devops/pipelines/yml/valet-mapper-example.yml @@ -0,0 +1,29 @@ +--- +variables: +- name: BuildParameters.RESTOREBUILDPROJECTS + value: "**/*.csproj" +- name: BUILDCONFIGURATION + value: Release +name: "$(date:yyyyMMdd)$(rev:.r)" +jobs: +- job: Job_1 + displayName: Agent job 1 + pool: + vmImage: windows-latest + steps: + - checkout: self + - task: NodeTool@0 + displayName: Use Node 10.16.3 + inputs: + versionSpec: 10.16.3 + - task: DotNetCoreCLI@2 + displayName: Restore + inputs: + command: restore + projects: "$(BuildParameters.RESTOREBUILDPROJECTS)" + - task: DotNetCoreCLI@2 + displayName: Build + inputs: + projects: "$(BuildParameters.RESTOREBUILDPROJECTS)" + arguments: "--configuration $(BUILDCONFIGURATION)" + diff --git a/azure_devops/pipelines/yml/valet-pipeline1.yml b/azure_devops/pipelines/yml/valet-pipeline1.yml new file mode 100644 index 0000000..9c86c9a --- /dev/null +++ b/azure_devops/pipelines/yml/valet-pipeline1.yml @@ -0,0 +1,19 @@ +# Bootcap Starter pipeline +# Start with a minimal pipeline that you can customize to build and deploy your code. +# Add steps that build, run tests, deploy, and more: +# https://aka.ms/yaml + +trigger: +- main + +pool: + vmImage: windows-latest + +steps: +- script: echo Hello, I am pipeline 1! + displayName: 'Run a one-line script' + +- script: | + echo Add other tasks to build, test, and deploy your project. + echo See https://aka.ms/yaml + displayName: 'Run a multi-line script' diff --git a/azure_devops/pipelines/yml/valet-pipeline2.yml b/azure_devops/pipelines/yml/valet-pipeline2.yml new file mode 100644 index 0000000..8b801c9 --- /dev/null +++ b/azure_devops/pipelines/yml/valet-pipeline2.yml @@ -0,0 +1,19 @@ +# Bootcap Starter pipeline +# Start with a minimal pipeline that you can customize to build and deploy your code. +# Add steps that build, run tests, deploy, and more: +# https://aka.ms/yaml + +trigger: +- main + +pool: + vmImage: windows-latest + +steps: +- script: echo Hello, I am pipeline 2! + displayName: 'Run a one-line script' + +- script: | + echo Add other tasks to build, test, and deploy your project. + echo See https://aka.ms/yaml + displayName: 'Run a multi-line script' diff --git a/azure_devops/readme.md b/azure_devops/readme.md new file mode 100644 index 0000000..1c3ebdb --- /dev/null +++ b/azure_devops/readme.md @@ -0,0 +1,111 @@ +# Valet labs for Azure DevOps + +This lab bootstraps a Valet environment using GitHub Codespaces and enables you to create an Azure DevOps project against which to run the Valet CI/CD migration tool. + +- [Use this Repo as a template](#repo-template) +- [Prerequisites](#prerequisites) +- [Azure DevOps project creation](#azure-devops-project-creation) +- [Use Valet with a codespace](#use-valet-with-a-codespace) +- [Labs for Azure DevOps](#labs-for-azure-devops) + +## Repo template + +1. Click `Use this template` to create this repository inside your GitHub organization. + +## Prerequisites +1. Azure DevOps organization. Please identify or create an Azure DevOps organization to use: [Click to create an Azure DevOps Org](https://docs.microsoft.com/en-us/azure/devops/organizations/accounts/create-organization?toc=%2Fazure%2Fdevops%2Fget-started%2Ftoc.json&bc=%2Fazure%2Fdevops%2Fget-started%2Fbreadcrumb%2Ftoc.json&view=azure-devops) + - Note and store the organization name for later. +2. Create an Azure DevOps personal access token with the following scopes: + - To do so, navigate to Sign in to your organization `https://dev.azure.com/{yourorganization}`. + - From your home page, open `user settings`, and then select `Personal access tokens`. + - Select `+ New Token` + - Name your token, select the organization where you want to use the token, and then set your token to automatically expire after a set number of days. + - Select the following scopes: + - Agents Pool: `Read` + - Build: `Read & Execute` + - Code: `Full, Execute` + - Project and Team: `Read, Write, & Manage` + - Release: `Read` + - Service Connections: `Read` + - Variable Groups: `Read` + - Click `Create` + - Copy the PAT somewhere safe and temporary. +3. Create a GitHub personal access token. + - To do so, navigate to your GitHub `Settings` - click your profile photo and then click `Settings`. + - Go to `Developer Settings` + - Go to `Personal Access Tokens` -> `Legacy tokens` + - Click `Generate new token` -> `Legacy tokens`. If required, provide your password. + - Select at least these scopes: `read packages` and `workflow`. Optionally, provide a text in the **Note** field and change the expiration. + - Click `Generate token` + - Copy the PAT somewhere safe and temporary. +4. Add GitHub personal access token to the CODESPACES **Secrets** tab. + - Navigate to the `Settings` tab in your repo + - Find `Secrets` and click the down arrow + - Click `Codespaces` + - Click `New Codespaces Secret` to create a new secret. + - Name the secret `VALET_PASSWORD` + - Paste in the GitHub PAT generated previously + - Click `Add Secret` + +## Azure DevOps project creation + +1. Add your Azure DevOps personal access token to the Actions **Secrets** tab. + - Navigate to the `Settings` tab in this repo + - Find `Secrets` and click the down arrow + - Click `Actions` + - Click `New Repository Secret` to create a new secret. + - Name the secret `AZDOPAT` + - Paste in the Azure DevOps PAT generated previously + - Click `Add Secret` + +2. Add Azure DevOps personal access token, project, and org to the CODESPACES **Secrets** tab. + - Navigate to the `Settings` tab in your repo + - Find `Secrets` and click the down arrow + - Click `Codespaces` + - Click `New Codespaces Secret` to create a new secret. + - Name the secret `AZDO_TOKEN` + - Paste in the Azure DevOps PAT generated previously + - Click `Add Secret` + - Click `New Codespaces Secret` to create another secret. + - Name the secret `AZDO_PROJECT` + - Type in the Azure DevOps project name. This should be `ValetBootstrap` + - Click `Add Secret` + - Click `New Codespaces Secret` to create a new secret. + - Name the secret `AZDO_ORG` + - Type in the Azure DevOps organization name + - Click `Add Secret` + +3. Run the Actions workflow + - CLick the `Actions` tab + - Select the `Valet Bootstrap for Azure DevOps` action + - Click `Run Workflow` + - Input the Azure DevOps Organization name identified above + - Input the Azure DevOps user name of the user that created the Azure DevOps PAT above. This will be an email address + - Accept the default Azure DevOps project name or change it to one of your preference + - Click `Run Workflow` + - Verify the workflow completed successfully + +### Example ### +![runaction](https://user-images.githubusercontent.com/26442605/167679930-9bdf6f4f-2e94-4145-aed3-8ee3e8e91d90.png) + + +## Use Valet with a codespace + +1. Start the codespace + - Click the `Code` button above repository + - Click the `Codespaces` tab + - Click `New Codespace` + - Wait a couple minutes, then verify that the codespace starts up. Once it is fully booted up, the termininal should be present. +2. Run Valet + - Verify you are in the Visual Studio Code terminal + - Change to the Valet directory by typing `cd scripts` + - Run the valet command by typing `valet`. Verify that Valet details all commands. + - Start using Valet + +## Labs for Azure DevOps +Perform the following labs to test-drive Valet +- [Audit Azure DevOps pipelines using the Valet audit command](valet-audit-lab.md) +- [Dry run the migration of an Azure DevOps pipeline to GitHub Actions](valet-dry-run-lab.md) +- [Migrate an Azure DevOps pipeline to GitHub Actions](valet-migrate-lab.md) +- [Migrate an Azure DevOps pipeline to GitHub Actions with a custom transformer](valet-migrate-custom-lab.md) +- [Forecast: Valet forecast lab](valet-forecast-lab.md) diff --git a/azure_devops/valet-audit-lab.md b/azure_devops/valet-audit-lab.md new file mode 100644 index 0000000..59f127a --- /dev/null +++ b/azure_devops/valet-audit-lab.md @@ -0,0 +1,44 @@ +# Audit Azure DevOps pipelines using the Valet audit command +In this lab, you will use Valet to audit Azure DevOps pipelines in an Azure DevOps project. + +## Prerequisites + +1. Follow all steps [here](/labs/azure_devops#readme) to set up your environment +2. Create or start a codespace in this repository (if not started) + +## Perform an audit +You will use the codespace preconfigured in this repository to perform the audit. + +1. Navigate to the codespace Visual Studio Code terminal +2. Verify you are in the scripts directory +3. Now, from the `./scripts` folder in your repository, run Valet to verify your Azure DevOps configuration: + +``` +cd scripts +valet audit azure-devops --output-dir . +``` +### Example +![runaudit](https://user-images.githubusercontent.com/26442605/160930617-d4d2f4a8-7b39-47d6-ab2c-60868cb56e5f.png) + +4. Valet displays green log files to indicate a successful audit + +### Example +![audit-output](https://user-images.githubusercontent.com/26442605/161104845-3d9d7493-794f-4787-9a89-3dd3c15a8a8d.png) + +## View audit output +The audit summary, logs, Azure DevOps yml, and GitHub yml should all be located in the scripts folder. + +1. Under the `scripts` folder find the `audit_summary.md` +2. Right-click the `auditsummary.md` file and select `Open Preview` +3. The file contains the audit summary details about what can and can't be migrated to GitHub Actions. +4. Review the file. + +### Example +![audit-summary](https://user-images.githubusercontent.com/26442605/161105335-4c38ea73-b5a5-4edc-9d89-d6febcae46d4.png) + +## Review the pipelines +The `audit` command grabs the yml, classic, and release pipelines from Azure DevOps and converts them to GitHub Actions. + +### Example +View the source yml and the proposed GitHub yml +![audit-pipelines](https://user-images.githubusercontent.com/26442605/161105649-dd20235d-bb98-4949-baa3-dac561427257.png) diff --git a/azure_devops/valet-dry-run-lab.md b/azure_devops/valet-dry-run-lab.md new file mode 100644 index 0000000..1303a0f --- /dev/null +++ b/azure_devops/valet-dry-run-lab.md @@ -0,0 +1,49 @@ +# Dry run the migration of an Azure DevOps pipeline to GitHub Actions +In this lab, you will use the `valet dry-run` command on one Azure DevOps pipeline. + +## Prerequisites + +1. Follow all steps [here](/labs/azure_devops#readme) to set up your environment +2. Create or start a codespace in this repository (if not started) +3. You have completed the [Valet audit lab](valet-audit-lab.md). + +## Identify the Azure DevOps pipeline ID to use +You will need a pipeline ID to perform the dry run +1. Go to the `scripts/ValetBootstrap/pipelines` folder +2. Open the `scripts/ValetBootstrap/pipelines/valet-mapper-example.config.json` file +3. Look for the `web - href` link +4. At the end of the link is the pipeline ID. Copy or note the ID. + +### Example +![configpipelineid](https://user-images.githubusercontent.com/26442605/161106098-3b9b05ec-ee5d-4b21-ab07-9f05f8cf1d98.png) + + +## Perform a dry run +You will use the codespace preconfigured in this repository to perform the dry run. + +1. Navigate to the codespace Visual Studio Code terminal +2. Verify you are in the scripts directory +3. Copy the following command and replace: + - `GITHUB-ORG` with the name of your organization. + - `GITHUB-REPO` with the name of your repository. + - `PIPELINE-ID` with your pipeline ID. + +``` +cd scripts +valet dry-run azure-devops pipeline --target-url https://github.com/GITHUB-ORG/GITHUB-REPO --pipeline-id PIPELINE-ID --output-dir .dry-runs +``` +4. Now, from the `./scripts` folder in your repository, run `valet dry-run` to see the output: + +### Example +![dryrun-ex2](https://user-images.githubusercontent.com/26442605/161107259-39076729-2ac8-4104-8170-11061b732593.png) + +4. Valet will create a folder called `dry-runs` under the scripts folder that shows what will be migrated. + +### Example +![dryrun-output](https://user-images.githubusercontent.com/26442605/161106810-6a48b261-8099-449b-a41c-3d1e0903485a.png) + +## View dry-run output +The dry-run output will show you the GitHub Actions yml that will be migrated to GitHub. + +### Example +![dryrunyml](https://user-images.githubusercontent.com/26442605/161108244-28da94d6-c28d-4484-bc08-cb3392d7745e.png) diff --git a/azure_devops/valet-forecast-lab.md b/azure_devops/valet-forecast-lab.md new file mode 100644 index 0000000..fd7bb86 --- /dev/null +++ b/azure_devops/valet-forecast-lab.md @@ -0,0 +1,3 @@ +# Forecast Azure DevOps to GitHub using Valet forecast command + +### Coming soon diff --git a/azure_devops/valet-migrate-custom-lab.md b/azure_devops/valet-migrate-custom-lab.md new file mode 100644 index 0000000..675eeb5 --- /dev/null +++ b/azure_devops/valet-migrate-custom-lab.md @@ -0,0 +1,88 @@ +# Migrate an Azure DevOps pipeline to GitHub Actions with a custom transformer +In this lab, you will create a custom plugin that transforms some of the existing migration mapping and replaces it with your own mapping. + +## Prerequisites + +1. Follow all steps [here](/labs/azure_devops#readme) to set up your environment +2. Create or start a codespace in this repository (if not started) +3. Complete the [Valet audit lab](valet-audit-lab.md). +4. Complete the [Valet migrate lab](valet-migrate-lab.md). + +## Identify the Azure DevOps pipeline ID to use +You will need the `valet-mapper-example` Azure DevOps pipeline ID to perform the migration +1. Go to the `scripts/ValetBootstrap/pipelines` folder +2. Open the `scripts/ValetBootstrap/pipelines/valet-mapper-example.config.json` file +3. Look for the `web - href` link +4. At the end of the link is the pipeline ID. Copy or note the ID. + +### Example +![configpipelineid](https://user-images.githubusercontent.com/26442605/161106098-3b9b05ec-ee5d-4b21-ab07-9f05f8cf1d98.png) + +## Create a custom transformer +To create a transformer, you need to create a Ruby file that looks as follows: +``` ruby +transform "azuredevopstaskname" do |item| + # your ruby code here that produces output + end +``` + +We start by changing the function name to match the Azure DevOps task name `DotNetCoreCLI@2`. +The way you find this name is by clicking the **view yaml** button at a task in the pipeline: + +This results in the following code: +``` ruby +transform "DotNetCoreCLI@2" do |item| + # your ruby code here that produces output + end +``` +The parameter item is a collection of items than contain the properties of the original task that was retrieved from Azure DevOps. +In this case we can see in the yaml that the properties that are set are `command` and `projects`. + +This is what you can expect to find when we would dump the information. To determine what is in the item being passed, you can do the following: +``` ruby +transform "DotNetCoreCLI@2" do |item| + puts item + end +``` + +Add the following code to the ruby file: +``` Ruby +transform "DotNetCoreCLI@2" do |item| + projects = item["projects"] + command = item['command'] + run_command = [] + + if(projects.include?("$")) + if(command.nil?) + command = "build" + end + run_command << "shopt -s globstar; for f in ./**/*.csproj; do dotnet #{command} $f #{item['arguments'] } ; done" + else + run_command << "dotnet #{command} #{item['projects']} #{item['arguments'] }" + end + { + shell: "bash", + run: run_command.join("\n") + } +end +``` +### Example +![mapper-ex1](https://user-images.githubusercontent.com/26442605/161116232-c3dab5ba-8ca5-4dd0-a659-b871646ab82f.png) + +Run the `migrate` command with the transformer again and pass it the custom plugin. Look at the result and see if it results in a successful build. + +``` +cd scripts +valet migrate azure-devops pipeline --target-url https://github.com/GITHUB-ORG/GITHUB-REPO --pipeline-id PIPELINE-ID --custom-transformers plugin/DotNetCoreCLI.rb +``` +Now, from the `./scripts` folder in your repository, run `valet migrate` with the custom transformer to migrate the pipeline to GitHub Actions: + +### Example +![mapper-ex2](https://user-images.githubusercontent.com/26442605/161116637-15c01950-ede0-4992-876b-6a3fe5688723.png) + +## View the pull request +The migrate output will show you the pull request on GitHub. Note here that the checks on the pull request all passed! + +### Example +![mapper-ex3](https://user-images.githubusercontent.com/26442605/161117488-93e38847-3034-4f04-a768-e74e16dba4ae.png) + diff --git a/azure_devops/valet-migrate-lab.md b/azure_devops/valet-migrate-lab.md new file mode 100644 index 0000000..8ff2dcc --- /dev/null +++ b/azure_devops/valet-migrate-lab.md @@ -0,0 +1,49 @@ +# Migrate an Azure DevOps pipeline to GitHub Actions +In this lab, you will use the Valet `migrate` command to migrate an Azure DevOps pipeline to GitHub Actions. + +## Prerequisites + +1. Follow all steps [here](/labs/azure_devops#readme) to set up your environment +2. Create or start a codespace in this repository (if not started) +3. Completed the [Valet audit lab](valet-audit-lab.md). + +## Identify the Azure DevOps pipeline ID to use +You will need a pipeline ID to perform the migration +1. Go to the `scripts/ValetBootstrap/pipelines` folder +2. Open the `scripts/ValetBootstrap/pipelines/valet-pipeline1.config.json` file +3. Look for the `web - href` link +4. At the end of the link is the pipeline ID. Copy or note the ID. + +### Example +![Screen Shot 2022-05-10 at 8 50 06 AM](https://user-images.githubusercontent.com/26442605/167670536-b46aa383-74bd-4e22-a782-0de5d0ce64a5.png) + + +## Perform a migration +You will use the codespace preconfigured in this repository to perform the migration. + +1. Navigate to the codespace Visual Studio Code terminal +2. Verify you are in the scripts directory +3. Copy the following command and replace: + - `GITHUB-ORG` with the name of your organization. + - `GITHUB-REPO` with the name of your repository. + - `PIPELINE-ID` with your pipeline ID. +4. Now, from the `./scripts` folder in your repository, run `valet migrate` to migrate the pipeline to GitHub Actions. +``` +cd scripts +valet migrate azure-devops pipeline --target-url https://github.com/GITHUB-ORG/GITHUB-REPO --pipeline-id PIPELINE-ID +``` + +### Example +![migrate-command](https://user-images.githubusercontent.com/26442605/161110277-45d9fff0-9d45-4946-a2a7-8f82fbb5d43f.png) + +5. Valet will create a pull request directly to your GitHub repository. +6. Click the green pull request link in the output of the migrate command. See below. + +### Example +![migrateoutput](https://user-images.githubusercontent.com/26442605/167672012-0580a215-29d4-4aff-a730-3e769414b1b7.png) + +## View the pull request +The migrate output will show you the pull request on GitHub. + +### Example +![migrate-pr](https://user-images.githubusercontent.com/26442605/161110724-f39d9cb9-1992-44c5-bea5-da2fcebb074c.png) diff --git a/code/Bootcamp.sln b/code/Bootcamp.sln new file mode 100644 index 0000000..099b74f --- /dev/null +++ b/code/Bootcamp.sln @@ -0,0 +1,56 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30114.105 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{B26D43AA-4A35-4035-9E99-48EF9A3E64DD}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Attendee", "src\Attendee\Attendee.csproj", "{2804EC63-670C-4970-85E4-2A63C9327FF8}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "test", "test", "{348A52EC-7046-4D1A-88DB-55B025C2BB68}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AttendeeTest", "test\AttendeeTest\AttendeeTest.csproj", "{DED76823-F195-46D4-8509-5692E3431D53}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Debug|x64 = Debug|x64 + Debug|x86 = Debug|x86 + Release|Any CPU = Release|Any CPU + Release|x64 = Release|x64 + Release|x86 = Release|x86 + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {2804EC63-670C-4970-85E4-2A63C9327FF8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2804EC63-670C-4970-85E4-2A63C9327FF8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2804EC63-670C-4970-85E4-2A63C9327FF8}.Debug|x64.ActiveCfg = Debug|Any CPU + {2804EC63-670C-4970-85E4-2A63C9327FF8}.Debug|x64.Build.0 = Debug|Any CPU + {2804EC63-670C-4970-85E4-2A63C9327FF8}.Debug|x86.ActiveCfg = Debug|Any CPU + {2804EC63-670C-4970-85E4-2A63C9327FF8}.Debug|x86.Build.0 = Debug|Any CPU + {2804EC63-670C-4970-85E4-2A63C9327FF8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2804EC63-670C-4970-85E4-2A63C9327FF8}.Release|Any CPU.Build.0 = Release|Any CPU + {2804EC63-670C-4970-85E4-2A63C9327FF8}.Release|x64.ActiveCfg = Release|Any CPU + {2804EC63-670C-4970-85E4-2A63C9327FF8}.Release|x64.Build.0 = Release|Any CPU + {2804EC63-670C-4970-85E4-2A63C9327FF8}.Release|x86.ActiveCfg = Release|Any CPU + {2804EC63-670C-4970-85E4-2A63C9327FF8}.Release|x86.Build.0 = Release|Any CPU + {DED76823-F195-46D4-8509-5692E3431D53}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {DED76823-F195-46D4-8509-5692E3431D53}.Debug|Any CPU.Build.0 = Debug|Any CPU + {DED76823-F195-46D4-8509-5692E3431D53}.Debug|x64.ActiveCfg = Debug|Any CPU + {DED76823-F195-46D4-8509-5692E3431D53}.Debug|x64.Build.0 = Debug|Any CPU + {DED76823-F195-46D4-8509-5692E3431D53}.Debug|x86.ActiveCfg = Debug|Any CPU + {DED76823-F195-46D4-8509-5692E3431D53}.Debug|x86.Build.0 = Debug|Any CPU + {DED76823-F195-46D4-8509-5692E3431D53}.Release|Any CPU.ActiveCfg = Release|Any CPU + {DED76823-F195-46D4-8509-5692E3431D53}.Release|Any CPU.Build.0 = Release|Any CPU + {DED76823-F195-46D4-8509-5692E3431D53}.Release|x64.ActiveCfg = Release|Any CPU + {DED76823-F195-46D4-8509-5692E3431D53}.Release|x64.Build.0 = Release|Any CPU + {DED76823-F195-46D4-8509-5692E3431D53}.Release|x86.ActiveCfg = Release|Any CPU + {DED76823-F195-46D4-8509-5692E3431D53}.Release|x86.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(NestedProjects) = preSolution + {2804EC63-670C-4970-85E4-2A63C9327FF8} = {B26D43AA-4A35-4035-9E99-48EF9A3E64DD} + {DED76823-F195-46D4-8509-5692E3431D53} = {348A52EC-7046-4D1A-88DB-55B025C2BB68} + EndGlobalSection +EndGlobal diff --git a/code/readme.md b/code/readme.md new file mode 100644 index 0000000..d58f7e7 --- /dev/null +++ b/code/readme.md @@ -0,0 +1,5 @@ +# code folder +This folder contains a dotnet core application used for building puproses with the CI/CD selected. + +### Note any file added to this folder or sub folders will get migrated to the Azure DevOps instance when the GitHub Action runs to create and bootstrap the Azure DevOps project + diff --git a/code/src/Attendee/Attendee.cs b/code/src/Attendee/Attendee.cs new file mode 100644 index 0000000..37e4c52 --- /dev/null +++ b/code/src/Attendee/Attendee.cs @@ -0,0 +1,15 @@ +using System; + +namespace Attendees +{ + public class Attendee + { + public bool AddAttendee(string added) + { + if (added == "exists") + return true; + + return false; + } + } +} diff --git a/code/src/Attendee/Attendee.csproj b/code/src/Attendee/Attendee.csproj new file mode 100644 index 0000000..563e6f9 --- /dev/null +++ b/code/src/Attendee/Attendee.csproj @@ -0,0 +1,7 @@ + + + + net5.0 + + + diff --git a/code/test/AttendeeTest/AttendeeExists.cs b/code/test/AttendeeTest/AttendeeExists.cs new file mode 100644 index 0000000..70e3b6d --- /dev/null +++ b/code/test/AttendeeTest/AttendeeExists.cs @@ -0,0 +1,18 @@ +using System; +using Xunit; +using Xunit.Extensions; +using Attendees; + +namespace AttendeeTest +{ + public class AttendeeTest + { + [Fact] + public void AttendeeExistsReturnTrue() + { + Attendee attendee = new Attendee(); + bool doesExist = attendee.AddAttendee("doesnotexist"); + Assert.False(doesExist, "The attendee does not exist"); + } + } +} diff --git a/code/test/AttendeeTest/AttendeeTest.csproj b/code/test/AttendeeTest/AttendeeTest.csproj new file mode 100644 index 0000000..8b41439 --- /dev/null +++ b/code/test/AttendeeTest/AttendeeTest.csproj @@ -0,0 +1,26 @@ + + + + net5.0 + + false + + + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + + + + + + diff --git a/jenkins/readme.md b/jenkins/readme.md new file mode 100644 index 0000000..8349c4a --- /dev/null +++ b/jenkins/readme.md @@ -0,0 +1 @@ +# Coming Soon! diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..d5069b2 --- /dev/null +++ b/readme.md @@ -0,0 +1,16 @@ +# Welcome to Valet labs! +These Valet labs let you test-drive Valet by bootstrapping the environment of your choosing. Below are the specific functions of the labs. + +## Bootstrap your environment +The first step toward setting up a bootstrapped environment is to choose what platform to run Valet against. Currently these labs support Azure DevOps. The default page of the lab of your choosing will detail how to configure and run the action to bootstrap the environment. + +## Configure and run Codespaces +After you have an environment bootstrapped, you run Valet via Codespaces. The codespace has docker running and will update to the latest Valet environment. + +## Labs +Once you have a bootstrapped environment and Valet running via Codespaces, you can proceed to the labs. + +## Environments to bootstrap +- [Azure DevOps](azure_devops) +- [Jenkins](jenkins) + diff --git a/valet/.env.local b/valet/.env.local new file mode 100644 index 0000000..0c10345 --- /dev/null +++ b/valet/.env.local @@ -0,0 +1,6 @@ +GITHUB_ACCESS_TOKEN= +GITHUB_INSTANCE_URL= + +AZURE_DEVOPS_PROJECT= +AZURE_DEVOPS_ORGANIZATION= +AZURE_DEVOPS_INSTANCE_URL= diff --git a/valet/valet b/valet/valet new file mode 100644 index 0000000..025b8cf --- /dev/null +++ b/valet/valet @@ -0,0 +1,27 @@ +#!/usr/bin/env bash + +# Version 1.1.1 + +VALET_REGISTRY=${VALET_REGISTRY:="ghcr.io"} +VALET_IMAGE=${VALET_IMAGE:-"$VALET_REGISTRY/valet-customers/valet-cli"} +VALET_IMAGE_VERSION=${VALET_IMAGE_VERSION:-"latest"} + +VALET_TOKEN_FILE=${VALET_TOKEN_FILE:-".env.local"} +VALET_ENV_VARS=('GITHUB_ACCESS_TOKEN' 'AZURE_DEVOPS_ACCESS_TOKEN' 'GITHUB_INSTANCE_URL' 'JENKINSFILE_ACCESS_TOKEN' 'JENKINS_USERNAME' 'JENKINS_ACCESS_TOKEN' 'JENKINS_INSTANCE_URL' 'TRAVIS_CI_ACCESS_TOKEN' 'TRAVIS_CI_INSTANCE_URL' 'TRAVIS_CI_SOURCE_GITHUB_ACCESS_TOKEN' 'TRAVIS_CI_SOURCE_GITHUB_INSTANCE_URL' 'YAML_VERBOSITY' 'HTTP_PROXY' 'HTTPS_PROXY' 'NO_PROXY' 'OCTOKIT_PROXY' 'OCTOKIT_SSL_VERIFY_MODE') +VALET_LOCAL_FOLDER=${VALET_LOCAL_FOLDER:-$(pwd)} + +if [[ -z "${DOCKER_OPTIONS+x}" ]]; then + DOCKER_OPTIONS="-t" +fi + +if [[ -e "$VALET_TOKEN_FILE" ]]; then + dockerArgs="--env-file $VALET_TOKEN_FILE" +fi + +for varName in ${VALET_ENV_VARS[*]}; do + if [ "${!varName}" != "" ]; then + dockerArgs=$dockerArgs" --env $varName" + fi +done + +MSYS_NO_PATHCONV=1 docker run --rm $dockerArgs $DOCKER_OPTIONS -v "$VALET_LOCAL_FOLDER"":/data" "$VALET_IMAGE":"$VALET_IMAGE_VERSION" "$@" diff --git a/valet/valet-update b/valet/valet-update new file mode 100644 index 0000000..2467924 --- /dev/null +++ b/valet/valet-update @@ -0,0 +1,10 @@ +#!/usr/bin/env bash + +# Version 1.1.0 + +VALET_REGISTRY=${VALET_REGISTRY:="ghcr.io"} +VALET_IMAGE=${VALET_IMAGE:-"$VALET_REGISTRY/valet-customers/valet-cli"} + +docker login $VALET_REGISTRY + +docker pull $VALET_IMAGE:latest From 03753a327f74a858d2415eb6f9ace961d13266a7 Mon Sep 17 00:00:00 2001 From: dkalmin Date: Wed, 25 May 2022 10:57:51 -0700 Subject: [PATCH 02/59] Adding GH Valet CLI support (#1) * Update readme.md * Update readme.md * Update valet-audit-lab.md * Delete valet * Delete valet-update * Update devcontainer.json * Update valet-audit-lab.md * Update valet-dry-run-lab.md * Update valet-migrate-custom-lab.md * Update valet-migrate-lab.md * Update valet-migrate-lab.md * Update valet-audit-lab.md * Update valet-dry-run-lab.md * Update valet-migrate-custom-lab.md * Update .env.local * Update valet-migrate-lab.md * Update valet-audit-lab.md * Update valet-dry-run-lab.md * Update valet-migrate-lab.md * Update valet-migrate-custom-lab.md * Update devcontainer.json * Update devcontainer.json * Create setenvars.sh * Update readme.md * Update readme.md * Update valet-audit-lab.md * Update valet-dry-run-lab.md * Update valet-migrate-lab.md * Update valet-migrate-custom-lab.md * Update and rename setenvars.sh to setupcodespace.sh * Update devcontainer.json * Update azure_devops/readme.md Co-authored-by: Ethan Dennis * Update readme.md * Update azure_devops/readme.md Co-authored-by: Ethan Dennis * Update azure_devops/valet-audit-lab.md Co-authored-by: Ethan Dennis * Update azure_devops/valet-audit-lab.md Co-authored-by: Ethan Dennis * Update azure_devops/valet-dry-run-lab.md Co-authored-by: Ethan Dennis * Update azure_devops/valet-dry-run-lab.md Co-authored-by: Ethan Dennis * Update azure_devops/valet-dry-run-lab.md Co-authored-by: Ethan Dennis * Update azure_devops/valet-migrate-custom-lab.md Co-authored-by: Ethan Dennis * Update azure_devops/valet-dry-run-lab.md Co-authored-by: Ethan Dennis * Update readme.md * Update readme.md * Update devcontainer.json * Update devcontainer.json * Update readme.md * Update devcontainer.json * Update readme.md * Update valetbsazdo.yml * Create .gitignore * Update readme.md * Update readme.md * Update azDevOps.ps1 * Delete updateEnvs.ps1 * Update devcontainer.json * Update readme.md * Update azure_devops/valet-audit-lab.md Co-authored-by: David Hathaway * Update azure_devops/valet-audit-lab.md Co-authored-by: David Hathaway * Update valet-audit-lab.md * Update valet-dry-run-lab.md * Update azure_devops/valet-dry-run-lab.md Co-authored-by: David Hathaway * Update azure_devops/valet-migrate-lab.md Co-authored-by: David Hathaway * Update valet-dry-run-lab.md * Update readme.md * Update readme.md * Update setupcodespace.sh * Rename .env.local to .env.local.template * Update .gitignore Co-authored-by: Ethan Dennis Co-authored-by: David Hathaway --- .devcontainer/devcontainer.json | 7 +- .devcontainer/setupcodespace.sh | 45 +++ .github/workflows/valetbsazdo.yml | 2 +- .gitignore | 353 ++++++++++++++++++++++ azure_devops/bootstrap/azDevOps.ps1 | 106 +++++-- azure_devops/bootstrap/updateEnvs.ps1 | 21 -- azure_devops/readme.md | 127 ++++---- azure_devops/valet-audit-lab.md | 44 ++- azure_devops/valet-dry-run-lab.md | 49 +-- azure_devops/valet-migrate-custom-lab.md | 44 ++- azure_devops/valet-migrate-lab.md | 38 ++- valet/{.env.local => .env.local.template} | 1 + valet/valet | 27 -- valet/valet-update | 10 - 14 files changed, 681 insertions(+), 193 deletions(-) create mode 100644 .devcontainer/setupcodespace.sh create mode 100644 .gitignore delete mode 100644 azure_devops/bootstrap/updateEnvs.ps1 rename valet/{.env.local => .env.local.template} (81%) delete mode 100644 valet/valet delete mode 100644 valet/valet-update diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 3e2e04b..d3ad635 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -15,12 +15,7 @@ // Add the IDs of extensions you want installed when the container is created. "extensions": [ - "GitHub.vscode-pull-request-github", - "ms-vscode.azure-account", - "ms-vscode.azurecli", - "ms-azure-devops.azure-pipelines", "ms-azuretools.vscode-docker", - "ms-vscode.powershell" ], - "postCreateCommand": "docker login ghcr.io/valet-customers --username ${GITHUB_USER} --password ${VALET_PASSWORD} && docker pull ghcr.io/valet-customers/valet-cli:latest && chmod +x ./valet/valet-update && chmod +x ./valet/valet && pwsh ./azure_devops/bootstrap/updateEnvs.ps1 -ghPAT ${VALET_PASSWORD} -azdoPAT ${AZDO_TOKEN} -org ${AZDO_ORG} -proj ${AZDO_PROJECT} || echo 'Could not auto-build. Skipping.' " + "postCreateCommand": "sudo bash .devcontainer/setupcodespace.sh ${VALET_GHCR_PASSWORD} ${AZURE_DEVOPS_PROJECT} ${AZURE_DEVOPS_ORGANIZATION} ${AZURE_DEVOPS_ACCESS_TOKEN} ${GITHUB_USER} 'https://github.com/' && gh extension install github/gh-valet || echo 'Could not auto-build. Skipping.' " } diff --git a/.devcontainer/setupcodespace.sh b/.devcontainer/setupcodespace.sh new file mode 100644 index 0000000..409335a --- /dev/null +++ b/.devcontainer/setupcodespace.sh @@ -0,0 +1,45 @@ +#!/bin/bash +echo "Starting setupcodespace.sh" + +azdoProject="AZURE_DEVOPS_PROJECT=" +azdoOrg="AZURE_DEVOPS_ORGANIZATION=" +azdoInstance="AZURE_DEVOPS_INSTANCE_URL=" +ghAccess="GITHUB_ACCESS_TOKEN=" +azdoAccess="AZURE_DEVOPS_ACCESS_TOKEN=" +ghInstanceUrl="GITHUB_INSTANCE_URL=" + +cat valet/.env.local + +if [ -z "$1" -o -z "$5" ] +then + echo "Error: Docker Pull Valet not executing because GITHUB_USER and/or VALET_PASSWORD not set" +else + docker login ghcr.io/valet-customers --username $5 --password $1 + docker pull ghcr.io/valet-customers/valet-cli:latest + echo "Success: Docker Pull Valet completed" + +fi + +if [ -z "$1" -o -z "$2" -o -z "$3" -o -z "$4" -o -z "$6" ] +then + value=`cat valet/.env.local.template` + echo "$value" > valet/.env.local + echo "Error: Set envars not set, valid values not passed in" +else + azdoInstanceUrl="https://dev.azure.com/$3" + + value=`cat valet/.env.local.template` + + result="${value/$azdoProject/$azdoProject$2}" + result="${result/$azdoOrg/$azdoOrg$3}" + result="${result/$azdoInstance/$azdoInstance$azdoInstanceUrl}" + result="${result/$ghAccess/$ghAccess$1}" + result="${result/$azdoAccess/$azdoAccess$4}" + result="${result/$ghInstanceUrl/$ghInstanceUrl$6}" + + echo "$result" > valet/.env.local + echo "Success: set envars in valet/.env.local" + +fi + +echo "Finished setupcodespace.sh" diff --git a/.github/workflows/valetbsazdo.yml b/.github/workflows/valetbsazdo.yml index 46d9750..bdcda6f 100644 --- a/.github/workflows/valetbsazdo.yml +++ b/.github/workflows/valetbsazdo.yml @@ -28,7 +28,7 @@ jobs: uses: actions/checkout@v2 - name: Run powershell file to bootstrap Azure DevOps env: - AZDOPATTOUSE: ${{ secrets.AZDOPAT }} + AZDOPATTOUSE: ${{ secrets.AZURE_DEVOPS_ACCESS_TOKEN }} ROOTFOLDER: ${{ github.workspace }} shell: pwsh run: | diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..f4adbb6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,353 @@ +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. +## +## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore + +# User-specific files +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Mono auto generated files +mono_crash.* + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ +[Ll]ogs/ + +# Visual Studio 2015/2017 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# Visual Studio 2017 auto generated files +Generated\ Files/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# NUnit +*.VisualState.xml +TestResult.xml +nunit-*.xml + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# Benchmark Results +BenchmarkDotNet.Artifacts/ + +# .NET Core +project.lock.json +project.fragment.lock.json +artifacts/ + +# StyleCop +StyleCopReport.xml + +# Files built by Visual Studio +*_i.c +*_p.c +*_h.h +*.ilk +*.meta +*.obj +*.iobj +*.pch +*.pdb +*.ipdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*_wpftmp.csproj +*.log +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# Chutzpah Test files +_Chutzpah* + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# Visual Studio Trace Files +*.e2e + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# AxoCover is a Code Coverage Tool +.axoCover/* +!.axoCover/settings.json + +# Visual Studio code coverage results +*.coverage +*.coveragexml + +# NCrunch +_NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* + +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml +# Note: Comment the next line if you want to checkin your web deploy settings, +# but database connection strings (with potential passwords) will be unencrypted +*.pubxml +*.publishproj + +# Microsoft Azure Web App publish settings. Comment the next line if you want to +# checkin your Azure Web App publish settings, but sensitive information contained +# in these scripts will be unencrypted +PublishScripts/ + +# NuGet Packages +*.nupkg +# NuGet Symbol Packages +*.snupkg +# The packages folder can be ignored because of Package Restore +**/[Pp]ackages/* +# except build/, which is used as an MSBuild target. +!**/[Pp]ackages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/[Pp]ackages/repositories.config +# NuGet v3's project.json files produces more ignorable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Windows Store app package directories and files +AppPackages/ +BundleArtifacts/ +Package.StoreAssociation.xml +_pkginfo.txt +*.appx +*.appxbundle +*.appxupload + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!?*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +orleans.codegen.cs + +# Including strong name files can present a security risk +# (https://github.com/github/gitignore/pull/2483#issue-259490424) +#*.snk + +# Since there are multiple workflows, uncomment next line to ignore bower_components +# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) +#bower_components/ + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm +ServiceFabricBackup/ +*.rptproj.bak + +# SQL Server files +*.mdf +*.ldf +*.ndf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings +*.rptproj.rsuser +*- [Bb]ackup.rdl +*- [Bb]ackup ([0-9]).rdl +*- [Bb]ackup ([0-9][0-9]).rdl + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat +node_modules/ + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) +*.vbw + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# Paket dependency manager +.paket/paket.exe +paket-files/ + +# FAKE - F# Make +.fake/ + +# CodeRush personal settings +.cr/personal + +# Python Tools for Visual Studio (PTVS) +__pycache__/ +*.pyc + +# Cake - Uncomment if you are using it +# tools/** +# !tools/packages.config + +# Tabs Studio +*.tss + +# Telerik's JustMock configuration file +*.jmconfig + +# BizTalk build output +*.btp.cs +*.btm.cs +*.odx.cs +*.xsd.cs + +# OpenCover UI analysis results +OpenCover/ + +# Azure Stream Analytics local run output +ASALocalRun/ + +# MSBuild Binary and Structured Log +*.binlog + +# NVidia Nsight GPU debugger configuration file +*.nvuser + +# MFractors (Xamarin productivity tool) working folder +.mfractor/ + +# Local History for Visual Studio +.localhistory/ + +# BeatPulse healthcheck temp database +healthchecksdb + +# Backup folder for Package Reference Convert tool in Visual Studio 2017 +MigrationBackup/ + +# Ionide (cross platform F# VS Code tools) working folder +.ionide/ + +# valet files +valet/.env*local diff --git a/azure_devops/bootstrap/azDevOps.ps1 b/azure_devops/bootstrap/azDevOps.ps1 index 626de9e..8e36704 100644 --- a/azure_devops/bootstrap/azDevOps.ps1 +++ b/azure_devops/bootstrap/azDevOps.ps1 @@ -46,11 +46,31 @@ $projectToCreate = @{ } } -$projectResponse = Invoke-RestMethod -Method 'Post' -Uri $createtUrlToUse -Headers @{"Authorization"="Basic $BasicCreds"} -Body ($projectToCreate|ConvertTo-Json) -ContentType "application/json" -$projectResponse | ConvertTo-Json + try{ + $projectResponse = Invoke-RestMethod -Method 'Post' -Uri $createtUrlToUse -Headers @{"Authorization"="Basic $BasicCreds"} -Body ($projectToCreate|ConvertTo-Json) -ContentType "application/json" + $projectResponse | ConvertTo-Json -Start-Sleep -s 5 -Write-Host "Yes! Project $project was created!" + Start-Sleep -s 5 + Write-Host "Yes! Project $project was created!" + + } Catch { + Write-Host " " + Write-Host "##########################################################################" + Write-Host "ERROR during project creation: $project" + Write-Host "The API call was: $createtUrlToUse" + Write-Host " " + + if($_.ErrorDetails.Message) { + Write-Host "See error message below:" + Write-Host $_.ErrorDetails.Message + } else { + Write-Host $_ + Write-Host "It is likely that the AZURE_DEVOPS_ACCESS_TOKEN is not set correctly in the worflow OR does not have sufficent permissions" + } + Write-Host " " + Write-Host "##########################################################################" + throw "Exiting. The Project $project was NOT created in Azure DevOps" + } ########################################################################## # IMPORT THE REPO @@ -82,15 +102,15 @@ $addTextFile = @{ $daFullName = $codeFile.FullName $codeBody = (Get-Content "$daFullName" -Raw) #Write-Host "codeBody: $codeBody" - Write-Host "folder: $folder" + #Write-Host "folder: $folder" $relath = $daFullName | Resolve-Path -Relative - Write-Host "relath: $relath" + #Write-Host "relath: $relath" $replaceSlash = $folder.Replace("/", "\") $repoPath = $relath.Substring($relath.lastIndexOf($replaceSlash) + $replaceSlash.Length) $wholeRepoPath = Join-Path -Path $itemPath -ChildPath $repoPath $wholeRepoPath = $wholeRepoPath.Replace("\", "/") - Write-Host "wholeRepoPath: $wholeRepoPath" - Write-Host "repoPath: $repoPath" + #Write-Host "wholeRepoPath: $wholeRepoPath" + #Write-Host "repoPath: $repoPath" @{ "changeType"= "add" "item"= @{ @@ -108,13 +128,28 @@ $addTextFile = @{ ) } +try{ + $repoUrlToUse = [string]::Format("https://dev.azure.com/{0}/{2}/_apis/git/repositories/{1}/pushes?api-version=7.1-preview.2", $orgToUse, $repoName, $project) + $pushResponse = Invoke-RestMethod -Method 'Post' -Uri $repoUrlToUse -Headers @{"Authorization"="Basic $BasicCreds"} -Body ($addTextFile|ConvertTo-Json -Depth 5) -ContentType "application/json" + $repoIds = $pushResponse.repository.id + Write-Host "Yes! Repo Was was created! The repoId is $repoIds" +} Catch { + Write-Host " " + Write-Host "##########################################################################" + Write-Host "ERROR during Repo creation:" + Write-Host "The API call was: $repoUrlToUse" + Write-Host " " -$repoUrlToUse = [string]::Format("https://dev.azure.com/{0}/{2}/_apis/git/repositories/{1}/pushes?api-version=7.1-preview.2", $orgToUse, $repoName, $project) -$pushResponse = Invoke-RestMethod -Method 'Post' -Uri $repoUrlToUse -Headers @{"Authorization"="Basic $BasicCreds"} -Body ($addTextFile|ConvertTo-Json -Depth 5) -ContentType "application/json" -$repoIds = $pushResponse.repository.id -Write-Host "Yes! Repo Was was created!" - -Write-Host "Yes! Repo was imported into $repoIds" + if($_.ErrorDetails.Message) { + Write-Host "See error message below:" + Write-Host $_.ErrorDetails.Message + } else { + Write-Host $_ + } + Write-Host " " + Write-Host "##########################################################################" + throw "Exiting. The Repo was NOT created. It is likely the Project was created in Azure DevOps." +} ########################################################################## ########################################################################## @@ -141,10 +176,26 @@ foreach ($f in $files) } } } - #$pipelineCreateBody | ConvertTo-Json + + try{ + $repoResponse = Invoke-RestMethod -Method 'Post' -Uri $plUrlToUse -Headers @{"Authorization"="Basic $BasicCreds"} -Body ($pipelineCreateBody|ConvertTo-Json) -ContentType "application/json" + } Catch { + Write-Host " " + Write-Host "##########################################################################" + Write-Host "ERROR during Pipeline creation:" + Write-Host "The API call was: $plUrlToUse" + Write-Host " " - $repoResponse = Invoke-RestMethod -Method 'Post' -Uri $plUrlToUse -Headers @{"Authorization"="Basic $BasicCreds"} -Body ($pipelineCreateBody|ConvertTo-Json) -ContentType "application/json" - $repoResponse | ConvertTo-Json + if($_.ErrorDetails.Message) { + Write-Host "See error message below:" + Write-Host $_.ErrorDetails.Message + } else { + Write-Host $_ + } + Write-Host " " + Write-Host "The Pipeline $nameOfPl was NOT created." + Write-Host "##########################################################################" + } } ########################################################################## @@ -161,7 +212,24 @@ foreach ($f in $files) $pclassicreateBody = (Get-Content ./$pipelinesRoot/classic/$fileName).Replace("REPOTOREPLACE", "$repoName") - $repo2Response = Invoke-RestMethod -Method 'Post' -Uri $classicUrlToUse -Headers @{"Authorization"="Basic $BasicCreds"} -Body ($pclassicreateBody) -ContentType "application/json" - $repo2Response | ConvertTo-Json + try{ + Invoke-RestMethod -Method 'Post' -Uri $classicUrlToUse -Headers @{"Authorization"="Basic $BasicCreds"} -Body ($pclassicreateBody) -ContentType "application/json" + } Catch { + Write-Host " " + Write-Host "##########################################################################" + Write-Host "ERROR during Pipeline creation:" + Write-Host "The API call was: $classicUrlToUse" + Write-Host " " + + if($_.ErrorDetails.Message) { + Write-Host "See error message below:" + Write-Host $_.ErrorDetails.Message + } else { + Write-Host $_ + } + Write-Host " " + Write-Host "The Pipeline $nameOfPl was NOT created." + Write-Host "##########################################################################" + } } Write-Host "End Valet Bootstrap" diff --git a/azure_devops/bootstrap/updateEnvs.ps1 b/azure_devops/bootstrap/updateEnvs.ps1 deleted file mode 100644 index 04bbaec..0000000 --- a/azure_devops/bootstrap/updateEnvs.ps1 +++ /dev/null @@ -1,21 +0,0 @@ -param ( - [String]$proj = "ValetBootstrapper", - [String]$org = "microsoft-bootcamp", - [String]$ghPAT = "dkalmintest", - [String]$azdoPAT = "dkalmin@github.com" - ) - -[String]$azdoProject = "AZURE_DEVOPS_PROJECT=" -[String]$azdoOrg = "AZURE_DEVOPS_ORGANIZATION=" -[String]$azdoInstance = "AZURE_DEVOPS_INSTANCE_URL=" -[String]$ghAccess = "GITHUB_ACCESS_TOKEN=" -[String]$azdoAccess = "AZURE_DEVOPS_ACCESS_TOKEN=" - -$updateEnvs = (Get-Content ./valet/.env.local) - -$updateEnvs = $updateEnvs.Replace("$azdoProject", "AZURE_DEVOPS_PROJECT=$proj") -$updateEnvs = $updateEnvs.Replace("$azdoOrg", "AZURE_DEVOPS_ORGANIZATION=$org") -$updateEnvs = $updateEnvs.Replace("$azdoInstance", "AZURE_DEVOPS_INSTANCE_URL=https://dev.azure.com/$org") -$updateEnvs = $updateEnvs.Replace("$ghAccess", "GITHUB_ACCESS_TOKEN=$ghPAT") -$updateEnvs = $updateEnvs.Replace("$azdoAccess", "AZURE_DEVOPS_ACCESS_TOKEN=$azdoPAT") -Set-Content -Path ./valet/.env.local -Value $updateEnvs diff --git a/azure_devops/readme.md b/azure_devops/readme.md index 1c3ebdb..d07ac10 100644 --- a/azure_devops/readme.md +++ b/azure_devops/readme.md @@ -4,6 +4,8 @@ This lab bootstraps a Valet environment using GitHub Codespaces and enables you - [Use this Repo as a template](#repo-template) - [Prerequisites](#prerequisites) +- [Codespace secrets](#codespace-secrets) +- [Action secrets](#action-secrets) - [Azure DevOps project creation](#azure-devops-project-creation) - [Use Valet with a codespace](#use-valet-with-a-codespace) - [Labs for Azure DevOps](#labs-for-azure-devops) @@ -14,8 +16,11 @@ This lab bootstraps a Valet environment using GitHub Codespaces and enables you ## Prerequisites 1. Azure DevOps organization. Please identify or create an Azure DevOps organization to use: [Click to create an Azure DevOps Org](https://docs.microsoft.com/en-us/azure/devops/organizations/accounts/create-organization?toc=%2Fazure%2Fdevops%2Fget-started%2Ftoc.json&bc=%2Fazure%2Fdevops%2Fget-started%2Fbreadcrumb%2Ftoc.json&view=azure-devops) - - Note and store the organization name for later. -2. Create an Azure DevOps personal access token with the following scopes: + - Note and store the Azure DevOp sorganization name for later. + - Note and store the user name you use for your Azure DevOps Organization. It will be an email address. +2. Azure DevOps Project. The default project name for this lab is `ValetBootstrap` There is an Action workflow that will create and populate the Azure DevOps project. No need to create it yourself. Note: The project has to be unique in the Azure DevOps organization. If you already have a project name `ValetBootstrap` please pick a differnt unique project name. + - Note and store the Azure DevOps project name for later. +3. Create an Azure DevOps personal access token with the following scopes: - To do so, navigate to Sign in to your organization `https://dev.azure.com/{yourorganization}`. - From your home page, open `user settings`, and then select `Personal access tokens`. - Select `+ New Token` @@ -23,67 +28,67 @@ This lab bootstraps a Valet environment using GitHub Codespaces and enables you - Select the following scopes: - Agents Pool: `Read` - Build: `Read & Execute` - - Code: `Full, Execute` + - Code: `Read & Write` - Project and Team: `Read, Write, & Manage` - Release: `Read` - Service Connections: `Read` - Variable Groups: `Read` - Click `Create` - Copy the PAT somewhere safe and temporary. -3. Create a GitHub personal access token. +4. Create a GitHub personal access token. - To do so, navigate to your GitHub `Settings` - click your profile photo and then click `Settings`. - Go to `Developer Settings` - - Go to `Personal Access Tokens` -> `Legacy tokens` - - Click `Generate new token` -> `Legacy tokens`. If required, provide your password. + - Go to `Personal Access Tokens` -> `Legacy tokens (if present)` + - Click `Generate new token` -> `Legacy tokens (if present)`. If required, provide your password. - Select at least these scopes: `read packages` and `workflow`. Optionally, provide a text in the **Note** field and change the expiration. - Click `Generate token` - Copy the PAT somewhere safe and temporary. -4. Add GitHub personal access token to the CODESPACES **Secrets** tab. - - Navigate to the `Settings` tab in your repo - - Find `Secrets` and click the down arrow - - Click `Codespaces` - - Click `New Codespaces Secret` to create a new secret. - - Name the secret `VALET_PASSWORD` - - Paste in the GitHub PAT generated previously - - Click `Add Secret` + +## Codespace secrets +Please add the following Codespace secrets. + +- `VALET_GHCR_PASSWORD`: Add `VALET_GHCR_PASSWORD` as the `Name` and the GitHub personal access token created above as the value. +- `AZURE_DEVOPS_ACCESS_TOKEN`: Add `AZURE_DEVOPS_ACCESS_TOKEN` as the `Name` and the Azure DevOps personal access token created above as the value. +- `AZURE_DEVOPS_ORGANIZATION`: Add `AZURE_DEVOPS_ORGANIZATION` as the `Name` and the Azure DevOps organization noted above as the value. +- `AZURE_DEVOPS_PROJECT`: Add `AZURE_DEVOPS_PROJECT` as the `Name` and the Azure DevOps project noted above as the value. + +Steps to create the Codespace secrets. Complete for secret noted above: + +- Navigate to the `Settings` tab in this repo +- Find `Secrets` and click the down arrow +- Click `Codespaces` +- Click `New Codespaces Secret` to create a new secret +- Name the secret as noted above +- Paste in the value noted above +- Click `Add Secret` + +## Action secrets +Please add the following Action secrets. + +- `AZURE_DEVOPS_ACCESS_TOKEN`: Add `AZURE_DEVOPS_ACCESS_TOKEN` as the `Name` and the Azure DevOps personal access token created above as the value. + +Steps to create the Codespace secret. Complete for secret noted above: + +- Navigate to the `Settings` tab in this repo +- Find `Secrets` and click the down arrow +- Click `Actions` +- Click `New Repository Secret` to create a new secret +- Name the secret as noted above +- Paste in the vale noted above +- Click `Add Secret` ## Azure DevOps project creation -1. Add your Azure DevOps personal access token to the Actions **Secrets** tab. - - Navigate to the `Settings` tab in this repo - - Find `Secrets` and click the down arrow - - Click `Actions` - - Click `New Repository Secret` to create a new secret. - - Name the secret `AZDOPAT` - - Paste in the Azure DevOps PAT generated previously - - Click `Add Secret` - -2. Add Azure DevOps personal access token, project, and org to the CODESPACES **Secrets** tab. - - Navigate to the `Settings` tab in your repo - - Find `Secrets` and click the down arrow - - Click `Codespaces` - - Click `New Codespaces Secret` to create a new secret. - - Name the secret `AZDO_TOKEN` - - Paste in the Azure DevOps PAT generated previously - - Click `Add Secret` - - Click `New Codespaces Secret` to create another secret. - - Name the secret `AZDO_PROJECT` - - Type in the Azure DevOps project name. This should be `ValetBootstrap` - - Click `Add Secret` - - Click `New Codespaces Secret` to create a new secret. - - Name the secret `AZDO_ORG` - - Type in the Azure DevOps organization name - - Click `Add Secret` - -3. Run the Actions workflow - - CLick the `Actions` tab - - Select the `Valet Bootstrap for Azure DevOps` action - - Click `Run Workflow` - - Input the Azure DevOps Organization name identified above - - Input the Azure DevOps user name of the user that created the Azure DevOps PAT above. This will be an email address - - Accept the default Azure DevOps project name or change it to one of your preference - - Click `Run Workflow` - - Verify the workflow completed successfully +Run the Actions workflow: +- CLick the `Actions` tab +- Select the `Valet Bootstrap for Azure DevOps` action +- Click `Run Workflow` +- Input the Azure DevOps Organization name identified above +- Input the Azure DevOps user name of the user that created the Azure DevOps PAT above. This will be an email address +- Accept the default Azure DevOps project name or change it to one of your preference + - NOTE: The default project name is `ValetBootstrap`. This must be unique in your Azure DevOps Organization. If not, please choose a unique name. +- Click `Run Workflow` +- Verify the workflow completed successfully. If the workflow did not run successfully you will see a detailed error message. ### Example ### ![runaction](https://user-images.githubusercontent.com/26442605/167679930-9bdf6f4f-2e94-4145-aed3-8ee3e8e91d90.png) @@ -96,11 +101,14 @@ This lab bootstraps a Valet environment using GitHub Codespaces and enables you - Click the `Codespaces` tab - Click `New Codespace` - Wait a couple minutes, then verify that the codespace starts up. Once it is fully booted up, the termininal should be present. -2. Run Valet - - Verify you are in the Visual Studio Code terminal - - Change to the Valet directory by typing `cd scripts` - - Run the valet command by typing `valet`. Verify that Valet details all commands. - - Start using Valet +2. Verify Valet CLI is installed and working. More information on the [GitHub Valet CLI extension](https://github.com/github/gh-valet) + - Verify Valet CLI is installed and working + - Run `gh valet version` in the Visual Studio Code terminal and verify the output looks like the below image. + - If `gh valet version` did not produce a similar image please follow these instructions [Troubleshoot GH Valet extension](#troubleshoot-gh-valet-extension) + - Start using Valet by following along with the [Labs for Azure DevOps](#labs-for-azure-devops) + +### Example ### +![gh-valet-version](https://user-images.githubusercontent.com/26442605/170106559-e69e669f-a1f6-4c2c-8998-3f089b899704.png) ## Labs for Azure DevOps Perform the following labs to test-drive Valet @@ -109,3 +117,14 @@ Perform the following labs to test-drive Valet - [Migrate an Azure DevOps pipeline to GitHub Actions](valet-migrate-lab.md) - [Migrate an Azure DevOps pipeline to GitHub Actions with a custom transformer](valet-migrate-custom-lab.md) - [Forecast: Valet forecast lab](valet-forecast-lab.md) + +## Troubleshoot GH Valet extension +Manually Install the GitHub CLI Valet extension. More information on the [GitHub Valet CLI extension](https://github.com/github/gh-valet) +- Verify you are in the Visual Studio Code terminal +- Run this command to install the GitHub Valet extension +- `gh extension install github/gh-valet` +- Verify the result of the install is: `✓ Installed extension github/gh-valet` +- If you get a similiar error to the following, click the link to authorize the token + ![linktolcickauth](https://user-images.githubusercontent.com/26442605/169588015-9414404f-82b6-4d0f-89d4-5f0e6941b029.png) + - Restart Codespace after clicking the link +- Verify Valet CLI is installed and working diff --git a/azure_devops/valet-audit-lab.md b/azure_devops/valet-audit-lab.md index 59f127a..cbd9ca3 100644 --- a/azure_devops/valet-audit-lab.md +++ b/azure_devops/valet-audit-lab.md @@ -1,44 +1,62 @@ # Audit Azure DevOps pipelines using the Valet audit command -In this lab, you will use Valet to audit Azure DevOps pipelines in an Azure DevOps project. +In this lab, you will use Valet to `audit` an Azure DevOps organization. The `audit` command can be used to scan a CI server and output a summary of the current pipelines. This summary can then be used to plan the timeline and effort required to migrate to GitHub Actions. + +- [Prerequisites](#prerequisites) +- [Perform an audit](#perform-an-audit) +- [View audit output](#view-audit-output) +- [Review the pipelines](#review-the-pipelines) ## Prerequisites 1. Follow all steps [here](/labs/azure_devops#readme) to set up your environment 2. Create or start a codespace in this repository (if not started) +3. Verify or add the following values to the `valet/.env.local` file. All values were created [here](/labs/azure_devops#readme) +``` +GITHUB_ACCESS_TOKEN= +GITHUB_INSTANCE_URL=https://github.com/ + +AZURE_DEVOPS_PROJECT= +AZURE_DEVOPS_ORGANIZATION= +AZURE_DEVOPS_INSTANCE_URL= +AZURE_DEVOPS_ACCESS_TOKEN= +``` +### Example ### + +![envlocal](https://user-images.githubusercontent.com/26442605/169069638-0bfa8f89-eaa9-423b-b2b7-447248e63e2b.png) ## Perform an audit You will use the codespace preconfigured in this repository to perform the audit. 1. Navigate to the codespace Visual Studio Code terminal -2. Verify you are in the scripts directory -3. Now, from the `./scripts` folder in your repository, run Valet to verify your Azure DevOps configuration: +2. Verify you are in the `valet` directory +3. Now, from the `valet` folder in your repository, run Valet to verify your Azure DevOps configuration: ``` -cd scripts -valet audit azure-devops --output-dir . +gh valet audit azure-devops --output-dir . ``` ### Example -![runaudit](https://user-images.githubusercontent.com/26442605/160930617-d4d2f4a8-7b39-47d6-ab2c-60868cb56e5f.png) +![valet-audit-1](https://user-images.githubusercontent.com/26442605/169615028-696dad13-ff83-41a7-b475-0ab8c0bbcd65.png) 4. Valet displays green log files to indicate a successful audit ### Example -![audit-output](https://user-images.githubusercontent.com/26442605/161104845-3d9d7493-794f-4787-9a89-3dd3c15a8a8d.png) +![valet-audit-2](https://user-images.githubusercontent.com/26442605/169615218-a8a3199d-a436-4d70-8c1e-17a61b089eb6.png) ## View audit output -The audit summary, logs, Azure DevOps yml, and GitHub yml should all be located in the scripts folder. +The audit summary, logs, Azure DevOps yml, and GitHub yml should all be located in the `valet` folder. -1. Under the `scripts` folder find the `audit_summary.md` -2. Right-click the `auditsummary.md` file and select `Open Preview` -3. The file contains the audit summary details about what can and can't be migrated to GitHub Actions. +1. Under the `valet` folder find the `audit_summary.md` +2. Right-click the `audit_summary.md` file and select `Open Preview` +3. The file contains details about your current pipelines and what can be migrated 100% automatically vs. what will need some manual intervention or aren't supported by GitHub Actions. 4. Review the file. ### Example -![audit-summary](https://user-images.githubusercontent.com/26442605/161105335-4c38ea73-b5a5-4edc-9d89-d6febcae46d4.png) +![valet-audit-3](https://user-images.githubusercontent.com/26442605/169615428-26f7a962-2064-46d0-8206-ea930109b252.png) ## Review the pipelines The `audit` command grabs the yml, classic, and release pipelines from Azure DevOps and converts them to GitHub Actions. ### Example View the source yml and the proposed GitHub yml -![audit-pipelines](https://user-images.githubusercontent.com/26442605/161105649-dd20235d-bb98-4949-baa3-dac561427257.png) +![valet-audit-4](https://user-images.githubusercontent.com/26442605/169615630-8d700081-c631-4b2a-ab1c-e52503f7838f.png) + diff --git a/azure_devops/valet-dry-run-lab.md b/azure_devops/valet-dry-run-lab.md index 1303a0f..73730d4 100644 --- a/azure_devops/valet-dry-run-lab.md +++ b/azure_devops/valet-dry-run-lab.md @@ -1,49 +1,62 @@ # Dry run the migration of an Azure DevOps pipeline to GitHub Actions -In this lab, you will use the `valet dry-run` command on one Azure DevOps pipeline. +In this lab, you will use the `valet dry-run` command to convert an Azure DevOps pipeline to it's equivalent GitHub Actions workflow and write the workflow to your local filesystem. + +- [Prerequisites](#prerequisites) +- [Identify the Azure DevOps pipeline ID to use](#identify-the-azure-devops-pipeline-id-to-use) +- [Perform a dry run](#perform-a-dry-run) +- [View dry-run output](#view-dry-run-output) ## Prerequisites 1. Follow all steps [here](/labs/azure_devops#readme) to set up your environment 2. Create or start a codespace in this repository (if not started) 3. You have completed the [Valet audit lab](valet-audit-lab.md). +4. Verify or add the following values to the `valet/.env.local` file. All values were created [here](/labs/azure_devops#readme) +``` +GITHUB_ACCESS_TOKEN= +GITHUB_INSTANCE_URL=https://github.com/ + +AZURE_DEVOPS_PROJECT= +AZURE_DEVOPS_ORGANIZATION= +AZURE_DEVOPS_INSTANCE_URL= +AZURE_DEVOPS_ACCESS_TOKEN= +``` +### Example ### + +![envlocal](https://user-images.githubusercontent.com/26442605/169069638-0bfa8f89-eaa9-423b-b2b7-447248e63e2b.png) ## Identify the Azure DevOps pipeline ID to use You will need a pipeline ID to perform the dry run -1. Go to the `scripts/ValetBootstrap/pipelines` folder -2. Open the `scripts/ValetBootstrap/pipelines/valet-mapper-example.config.json` file -3. Look for the `web - href` link +1. Go to the `valet/ValetBootstrap/pipelines` folder +2. Open the `valet/ValetBootstrap/pipelines/valet-pipeline1.json` file +3. Look for the `$.web.href` link 4. At the end of the link is the pipeline ID. Copy or note the ID. ### Example -![configpipelineid](https://user-images.githubusercontent.com/26442605/161106098-3b9b05ec-ee5d-4b21-ab07-9f05f8cf1d98.png) - +![valet-dr-5](https://user-images.githubusercontent.com/26442605/169616920-7c407adc-0c4e-4104-9046-d1d2ecdd6edf.png) ## Perform a dry run You will use the codespace preconfigured in this repository to perform the dry run. 1. Navigate to the codespace Visual Studio Code terminal -2. Verify you are in the scripts directory -3. Copy the following command and replace: - - `GITHUB-ORG` with the name of your organization. - - `GITHUB-REPO` with the name of your repository. - - `PIPELINE-ID` with your pipeline ID. +2. Verify you are in the `valet` directory ``` -cd scripts -valet dry-run azure-devops pipeline --target-url https://github.com/GITHUB-ORG/GITHUB-REPO --pipeline-id PIPELINE-ID --output-dir .dry-runs +gh valet dry-run azure-devops pipeline --pipeline-id PIPELINE-ID --output-dir dry-runs ``` -4. Now, from the `./scripts` folder in your repository, run `valet dry-run` to see the output: +3. Now, from the `valet` folder in your repository, run `gh valet dry-run` to see the output: ### Example -![dryrun-ex2](https://user-images.githubusercontent.com/26442605/161107259-39076729-2ac8-4104-8170-11061b732593.png) +![valet-dr-1](https://user-images.githubusercontent.com/26442605/169616149-46c2d743-47fe-4061-a48a-7f21442624cb.png) -4. Valet will create a folder called `dry-runs` under the scripts folder that shows what will be migrated. +4. Valet will create a folder called `dry-runs` under the `valet` folder that shows what will be migrated. ### Example -![dryrun-output](https://user-images.githubusercontent.com/26442605/161106810-6a48b261-8099-449b-a41c-3d1e0903485a.png) +![valet-dr-2](https://user-images.githubusercontent.com/26442605/169616265-176a19fd-3071-44fc-bff7-866a172afc57.png) ## View dry-run output The dry-run output will show you the GitHub Actions yml that will be migrated to GitHub. ### Example -![dryrunyml](https://user-images.githubusercontent.com/26442605/161108244-28da94d6-c28d-4484-bc08-cb3392d7745e.png) +![valet-dr-3](https://user-images.githubusercontent.com/26442605/169616486-fd5512fa-0761-45fe-a252-5b2ef0926a04.png) + diff --git a/azure_devops/valet-migrate-custom-lab.md b/azure_devops/valet-migrate-custom-lab.md index 675eeb5..ccf7a3b 100644 --- a/azure_devops/valet-migrate-custom-lab.md +++ b/azure_devops/valet-migrate-custom-lab.md @@ -1,5 +1,10 @@ # Migrate an Azure DevOps pipeline to GitHub Actions with a custom transformer -In this lab, you will create a custom plugin that transforms some of the existing migration mapping and replaces it with your own mapping. +In this lab, you will create a custom plugin that transforms some of the existing migration mapping and replaces it with your own mapping. Then use the `migrate` subcommand to migrate the pipeline. The `migrate` subcommand can be used to convert a pipeline to its GitHub Actions equivalent and then create a pull request with the contents. + +- [Prerequisites](#prerequisites) +- [Identify the Azure DevOps pipeline ID to use](#identify-the-azure-devops-pipeline-id-to-use) +- [Create a custom transformer](#create-a-custom-transformer) +- [View the pull request](#view-the-pull-request) ## Prerequisites @@ -7,11 +12,24 @@ In this lab, you will create a custom plugin that transforms some of the existin 2. Create or start a codespace in this repository (if not started) 3. Complete the [Valet audit lab](valet-audit-lab.md). 4. Complete the [Valet migrate lab](valet-migrate-lab.md). +5. Verify or add the following values to the `./valet/.env.local` file. All values were created [here](/labs/azure_devops#readme) +``` +GITHUB_ACCESS_TOKEN= +GITHUB_INSTANCE_URL=https://github.com/ + +AZURE_DEVOPS_PROJECT= +AZURE_DEVOPS_ORGANIZATION= +AZURE_DEVOPS_INSTANCE_URL= +AZURE_DEVOPS_ACCESS_TOKEN= +``` +### Example ### + +![envlocal](https://user-images.githubusercontent.com/26442605/169069638-0bfa8f89-eaa9-423b-b2b7-447248e63e2b.png) ## Identify the Azure DevOps pipeline ID to use You will need the `valet-mapper-example` Azure DevOps pipeline ID to perform the migration -1. Go to the `scripts/ValetBootstrap/pipelines` folder -2. Open the `scripts/ValetBootstrap/pipelines/valet-mapper-example.config.json` file +1. Go to the `valet/ValetBootstrap/pipelines` folder +2. Open the `valet/ValetBootstrap/pipelines/valet-mapper-example.config.json` file 3. Look for the `web - href` link 4. At the end of the link is the pipeline ID. Copy or note the ID. @@ -19,6 +37,7 @@ You will need the `valet-mapper-example` Azure DevOps pipeline ID to perform the ![configpipelineid](https://user-images.githubusercontent.com/26442605/161106098-3b9b05ec-ee5d-4b21-ab07-9f05f8cf1d98.png) ## Create a custom transformer + To create a transformer, you need to create a Ruby file that looks as follows: ``` ruby transform "azuredevopstaskname" do |item| @@ -26,7 +45,9 @@ transform "azuredevopstaskname" do |item| end ``` -We start by changing the function name to match the Azure DevOps task name `DotNetCoreCLI@2`. +We start by creating a new folder called `plugin` under the `valet` folder in your repository. In there create a file called `DotNetCoreCLI.rb`. + +Next change the function name to match the Azure DevOps task name `DotNetCoreCLI@2`. The way you find this name is by clicking the **view yaml** button at a task in the pipeline: This results in the following code: @@ -37,13 +58,6 @@ transform "DotNetCoreCLI@2" do |item| ``` The parameter item is a collection of items than contain the properties of the original task that was retrieved from Azure DevOps. In this case we can see in the yaml that the properties that are set are `command` and `projects`. - -This is what you can expect to find when we would dump the information. To determine what is in the item being passed, you can do the following: -``` ruby -transform "DotNetCoreCLI@2" do |item| - puts item - end -``` Add the following code to the ruby file: ``` Ruby @@ -72,13 +86,13 @@ end Run the `migrate` command with the transformer again and pass it the custom plugin. Look at the result and see if it results in a successful build. ``` -cd scripts -valet migrate azure-devops pipeline --target-url https://github.com/GITHUB-ORG/GITHUB-REPO --pipeline-id PIPELINE-ID --custom-transformers plugin/DotNetCoreCLI.rb +cd valet +gh valet migrate azure-devops pipeline --target-url https://github.com/GITHUB-ORG/GITHUB-REPO --pipeline-id PIPELINE-ID --custom-transformers plugin/DotNetCoreCLI.rb --output-dir migrate ``` -Now, from the `./scripts` folder in your repository, run `valet migrate` with the custom transformer to migrate the pipeline to GitHub Actions: +Now, from the `./valet` folder in your repository, run `gh valet migrate` with the custom transformer to migrate the pipeline to GitHub Actions: ### Example -![mapper-ex2](https://user-images.githubusercontent.com/26442605/161116637-15c01950-ede0-4992-876b-6a3fe5688723.png) +![valet-cm-1](https://user-images.githubusercontent.com/26442605/169618556-7c79b34b-6d4c-48d5-98e5-7f8d771117a5.png) ## View the pull request The migrate output will show you the pull request on GitHub. Note here that the checks on the pull request all passed! diff --git a/azure_devops/valet-migrate-lab.md b/azure_devops/valet-migrate-lab.md index 8ff2dcc..d51dd6d 100644 --- a/azure_devops/valet-migrate-lab.md +++ b/azure_devops/valet-migrate-lab.md @@ -1,16 +1,34 @@ # Migrate an Azure DevOps pipeline to GitHub Actions -In this lab, you will use the Valet `migrate` command to migrate an Azure DevOps pipeline to GitHub Actions. +In this lab, you will use the Valet `migrate` command to migrate an Azure DevOps pipeline to GitHub Actions. The `migrate` subcommand can be used to convert a pipeline to its GitHub Actions equivalent and then create a pull request with the contents. + +- [Prerequisites](#prerequisites) +- [Identify the Azure DevOps pipeline ID to use](#identify-the-azure-devops-pipeline-id-to-use) +- [Perform a migration](#perform-a-migration) +- [View the pull request](#view-the-pull-request) ## Prerequisites 1. Follow all steps [here](/labs/azure_devops#readme) to set up your environment 2. Create or start a codespace in this repository (if not started) 3. Completed the [Valet audit lab](valet-audit-lab.md). +4. Verify or add the following values to the `./valet/.env.local` file. All values were created [here](/labs/azure_devops#readme) +``` +GITHUB_ACCESS_TOKEN= +GITHUB_INSTANCE_URL=https://github.com/ + +AZURE_DEVOPS_PROJECT= +AZURE_DEVOPS_ORGANIZATION= +AZURE_DEVOPS_INSTANCE_URL= +AZURE_DEVOPS_ACCESS_TOKEN= +``` +### Example ### + +![envlocal](https://user-images.githubusercontent.com/26442605/169069638-0bfa8f89-eaa9-423b-b2b7-447248e63e2b.png) ## Identify the Azure DevOps pipeline ID to use You will need a pipeline ID to perform the migration -1. Go to the `scripts/ValetBootstrap/pipelines` folder -2. Open the `scripts/ValetBootstrap/pipelines/valet-pipeline1.config.json` file +1. Go to the `valet/ValetBootstrap/pipelines` folder +2. Open the `valet/ValetBootstrap/pipelines/valet-pipeline1.config.json` file 3. Look for the `web - href` link 4. At the end of the link is the pipeline ID. Copy or note the ID. @@ -22,25 +40,27 @@ You will need a pipeline ID to perform the migration You will use the codespace preconfigured in this repository to perform the migration. 1. Navigate to the codespace Visual Studio Code terminal -2. Verify you are in the scripts directory +2. Verify you are in the valet directory 3. Copy the following command and replace: - `GITHUB-ORG` with the name of your organization. - `GITHUB-REPO` with the name of your repository. - `PIPELINE-ID` with your pipeline ID. -4. Now, from the `./scripts` folder in your repository, run `valet migrate` to migrate the pipeline to GitHub Actions. +4. Now, from the `./valet` folder in your repository, run `valet migrate` to migrate the pipeline to GitHub Actions. ``` -cd scripts -valet migrate azure-devops pipeline --target-url https://github.com/GITHUB-ORG/GITHUB-REPO --pipeline-id PIPELINE-ID +cd valet +gh valet migrate azure-devops pipeline --target-url https://github.com/GITHUB-ORG/GITHUB-REPO --pipeline-id PIPELINE-ID --output-dir migrations ``` ### Example -![migrate-command](https://user-images.githubusercontent.com/26442605/161110277-45d9fff0-9d45-4946-a2a7-8f82fbb5d43f.png) +![valet-migrate-1](https://user-images.githubusercontent.com/26442605/169617557-289cee54-0116-4d13-8e6f-a9d0508259e1.png) + 5. Valet will create a pull request directly to your GitHub repository. 6. Click the green pull request link in the output of the migrate command. See below. ### Example -![migrateoutput](https://user-images.githubusercontent.com/26442605/167672012-0580a215-29d4-4aff-a730-3e769414b1b7.png) +![valet-migrate-5](https://user-images.githubusercontent.com/26442605/169617699-ce0c0720-8830-46ed-811d-c2fe1ccf06ea.png) + ## View the pull request The migrate output will show you the pull request on GitHub. diff --git a/valet/.env.local b/valet/.env.local.template similarity index 81% rename from valet/.env.local rename to valet/.env.local.template index 0c10345..ce4ca6f 100644 --- a/valet/.env.local +++ b/valet/.env.local.template @@ -4,3 +4,4 @@ GITHUB_INSTANCE_URL= AZURE_DEVOPS_PROJECT= AZURE_DEVOPS_ORGANIZATION= AZURE_DEVOPS_INSTANCE_URL= +AZURE_DEVOPS_ACCESS_TOKEN= diff --git a/valet/valet b/valet/valet deleted file mode 100644 index 025b8cf..0000000 --- a/valet/valet +++ /dev/null @@ -1,27 +0,0 @@ -#!/usr/bin/env bash - -# Version 1.1.1 - -VALET_REGISTRY=${VALET_REGISTRY:="ghcr.io"} -VALET_IMAGE=${VALET_IMAGE:-"$VALET_REGISTRY/valet-customers/valet-cli"} -VALET_IMAGE_VERSION=${VALET_IMAGE_VERSION:-"latest"} - -VALET_TOKEN_FILE=${VALET_TOKEN_FILE:-".env.local"} -VALET_ENV_VARS=('GITHUB_ACCESS_TOKEN' 'AZURE_DEVOPS_ACCESS_TOKEN' 'GITHUB_INSTANCE_URL' 'JENKINSFILE_ACCESS_TOKEN' 'JENKINS_USERNAME' 'JENKINS_ACCESS_TOKEN' 'JENKINS_INSTANCE_URL' 'TRAVIS_CI_ACCESS_TOKEN' 'TRAVIS_CI_INSTANCE_URL' 'TRAVIS_CI_SOURCE_GITHUB_ACCESS_TOKEN' 'TRAVIS_CI_SOURCE_GITHUB_INSTANCE_URL' 'YAML_VERBOSITY' 'HTTP_PROXY' 'HTTPS_PROXY' 'NO_PROXY' 'OCTOKIT_PROXY' 'OCTOKIT_SSL_VERIFY_MODE') -VALET_LOCAL_FOLDER=${VALET_LOCAL_FOLDER:-$(pwd)} - -if [[ -z "${DOCKER_OPTIONS+x}" ]]; then - DOCKER_OPTIONS="-t" -fi - -if [[ -e "$VALET_TOKEN_FILE" ]]; then - dockerArgs="--env-file $VALET_TOKEN_FILE" -fi - -for varName in ${VALET_ENV_VARS[*]}; do - if [ "${!varName}" != "" ]; then - dockerArgs=$dockerArgs" --env $varName" - fi -done - -MSYS_NO_PATHCONV=1 docker run --rm $dockerArgs $DOCKER_OPTIONS -v "$VALET_LOCAL_FOLDER"":/data" "$VALET_IMAGE":"$VALET_IMAGE_VERSION" "$@" diff --git a/valet/valet-update b/valet/valet-update deleted file mode 100644 index 2467924..0000000 --- a/valet/valet-update +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env bash - -# Version 1.1.0 - -VALET_REGISTRY=${VALET_REGISTRY:="ghcr.io"} -VALET_IMAGE=${VALET_IMAGE:-"$VALET_REGISTRY/valet-customers/valet-cli"} - -docker login $VALET_REGISTRY - -docker pull $VALET_IMAGE:latest From ba5378580431e26661ac5ad6457128c4d98c714f Mon Sep 17 00:00:00 2001 From: Matisse Hack Date: Fri, 10 Jun 2022 20:31:36 +0000 Subject: [PATCH 03/59] Consistent output directories --- azure_devops/valet-audit-lab.md | 2 +- azure_devops/valet-dry-run-lab.md | 2 +- azure_devops/valet-migrate-lab.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/azure_devops/valet-audit-lab.md b/azure_devops/valet-audit-lab.md index cbd9ca3..5ae8e8a 100644 --- a/azure_devops/valet-audit-lab.md +++ b/azure_devops/valet-audit-lab.md @@ -32,7 +32,7 @@ You will use the codespace preconfigured in this repository to perform the audit 3. Now, from the `valet` folder in your repository, run Valet to verify your Azure DevOps configuration: ``` -gh valet audit azure-devops --output-dir . +gh valet audit azure-devops --output-dir audit ``` ### Example ![valet-audit-1](https://user-images.githubusercontent.com/26442605/169615028-696dad13-ff83-41a7-b475-0ab8c0bbcd65.png) diff --git a/azure_devops/valet-dry-run-lab.md b/azure_devops/valet-dry-run-lab.md index 73730d4..fbdea4d 100644 --- a/azure_devops/valet-dry-run-lab.md +++ b/azure_devops/valet-dry-run-lab.md @@ -42,7 +42,7 @@ You will use the codespace preconfigured in this repository to perform the dry r 2. Verify you are in the `valet` directory ``` -gh valet dry-run azure-devops pipeline --pipeline-id PIPELINE-ID --output-dir dry-runs +gh valet dry-run azure-devops pipeline --pipeline-id PIPELINE-ID --output-dir dry-run ``` 3. Now, from the `valet` folder in your repository, run `gh valet dry-run` to see the output: diff --git a/azure_devops/valet-migrate-lab.md b/azure_devops/valet-migrate-lab.md index d51dd6d..5053627 100644 --- a/azure_devops/valet-migrate-lab.md +++ b/azure_devops/valet-migrate-lab.md @@ -48,7 +48,7 @@ You will use the codespace preconfigured in this repository to perform the migra 4. Now, from the `./valet` folder in your repository, run `valet migrate` to migrate the pipeline to GitHub Actions. ``` cd valet -gh valet migrate azure-devops pipeline --target-url https://github.com/GITHUB-ORG/GITHUB-REPO --pipeline-id PIPELINE-ID --output-dir migrations +gh valet migrate azure-devops pipeline --target-url https://github.com/GITHUB-ORG/GITHUB-REPO --pipeline-id PIPELINE-ID --output-dir migrate ``` ### Example From 9e24b01628af91bf023495ca5c9341013f35d7a7 Mon Sep 17 00:00:00 2001 From: Matisse Hack Date: Fri, 10 Jun 2022 20:33:35 +0000 Subject: [PATCH 04/59] Format Ruby code blocks --- azure_devops/valet-migrate-custom-lab.md | 35 ++++++++++++------------ 1 file changed, 17 insertions(+), 18 deletions(-) diff --git a/azure_devops/valet-migrate-custom-lab.md b/azure_devops/valet-migrate-custom-lab.md index ccf7a3b..7f38673 100644 --- a/azure_devops/valet-migrate-custom-lab.md +++ b/azure_devops/valet-migrate-custom-lab.md @@ -41,8 +41,8 @@ You will need the `valet-mapper-example` Azure DevOps pipeline ID to perform the To create a transformer, you need to create a Ruby file that looks as follows: ``` ruby transform "azuredevopstaskname" do |item| - # your ruby code here that produces output - end + # your ruby code here that produces output +end ``` We start by creating a new folder called `plugin` under the `valet` folder in your repository. In there create a file called `DotNetCoreCLI.rb`. @@ -53,8 +53,8 @@ The way you find this name is by clicking the **view yaml** button at a task in This results in the following code: ``` ruby transform "DotNetCoreCLI@2" do |item| - # your ruby code here that produces output - end + # your ruby code here that produces output +end ``` The parameter item is a collection of items than contain the properties of the original task that was retrieved from Azure DevOps. In this case we can see in the yaml that the properties that are set are `command` and `projects`. @@ -63,21 +63,20 @@ Add the following code to the ruby file: ``` Ruby transform "DotNetCoreCLI@2" do |item| projects = item["projects"] - command = item['command'] + command = item["command"] run_command = [] - - if(projects.include?("$")) - if(command.nil?) - command = "build" - end - run_command << "shopt -s globstar; for f in ./**/*.csproj; do dotnet #{command} $f #{item['arguments'] } ; done" - else - run_command << "dotnet #{command} #{item['projects']} #{item['arguments'] }" - end - { - shell: "bash", - run: run_command.join("\n") - } + + if projects.include?("$") + command = "build" if command.nil? + run_command << "shopt -s globstar; for f in ./**/*.csproj; do dotnet #{command} $f #{item['arguments']} ; done" + else + run_command << "dotnet #{command} #{item['projects']} #{item['arguments']}" + end + + { + shell: "bash", + run: run_command.join("\n") + } end ``` ### Example From 34671f064d3666c413e92d49e551e7667db79ce9 Mon Sep 17 00:00:00 2001 From: Matisse Hack Date: Fri, 10 Jun 2022 23:42:57 +0000 Subject: [PATCH 05/59] Remove image --- azure_devops/valet-migrate-custom-lab.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/azure_devops/valet-migrate-custom-lab.md b/azure_devops/valet-migrate-custom-lab.md index 7f38673..a0f64e9 100644 --- a/azure_devops/valet-migrate-custom-lab.md +++ b/azure_devops/valet-migrate-custom-lab.md @@ -79,8 +79,6 @@ transform "DotNetCoreCLI@2" do |item| } end ``` -### Example -![mapper-ex1](https://user-images.githubusercontent.com/26442605/161116232-c3dab5ba-8ca5-4dd0-a659-b871646ab82f.png) Run the `migrate` command with the transformer again and pass it the custom plugin. Look at the result and see if it results in a successful build. From be596e73946b9ac93646ebf02d1f495adfa930a3 Mon Sep 17 00:00:00 2001 From: Matisse Hack Date: Fri, 17 Jun 2022 14:51:29 -0700 Subject: [PATCH 06/59] Update azure_devops/valet-migrate-custom-lab.md Co-authored-by: Ethan Dennis --- azure_devops/valet-migrate-custom-lab.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure_devops/valet-migrate-custom-lab.md b/azure_devops/valet-migrate-custom-lab.md index a0f64e9..97c3654 100644 --- a/azure_devops/valet-migrate-custom-lab.md +++ b/azure_devops/valet-migrate-custom-lab.md @@ -71,7 +71,7 @@ transform "DotNetCoreCLI@2" do |item| run_command << "shopt -s globstar; for f in ./**/*.csproj; do dotnet #{command} $f #{item['arguments']} ; done" else run_command << "dotnet #{command} #{item['projects']} #{item['arguments']}" - end + end { shell: "bash", From 38b63d3af568cc110f3bcc161dc5fe22bb1dbab4 Mon Sep 17 00:00:00 2001 From: dkalmin Date: Wed, 29 Jun 2022 10:28:06 -0700 Subject: [PATCH 07/59] Updating format and repo creation flow. (#3) * Update readme.md * Update readme.md * Update readme.md * Update devcontainer.json * Update setupcodespace.sh * Update valet-audit-lab.md * Update valet-dry-run-lab.md * Update valet-migrate-lab.md * Update valet-migrate-custom-lab.md * Update valet-audit-lab.md * Update valet-audit-lab.md * Update valet-dry-run-lab.md * Update valet-migrate-lab.md * Update valet-migrate-custom-lab.md * Update valet-dry-run-lab.md * Update valet-migrate-custom-lab.md --- .devcontainer/devcontainer.json | 1 + .devcontainer/setupcodespace.sh | 25 ++++-------------------- azure_devops/readme.md | 24 ++++++++++++----------- azure_devops/valet-audit-lab.md | 18 ++++------------- azure_devops/valet-dry-run-lab.md | 20 +++++-------------- azure_devops/valet-migrate-custom-lab.md | 17 ++-------------- azure_devops/valet-migrate-lab.md | 19 +++++------------- readme.md | 21 ++++++++++++-------- 8 files changed, 47 insertions(+), 98 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index d3ad635..8c3f8c2 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -17,5 +17,6 @@ "extensions": [ "ms-azuretools.vscode-docker", ], + "onCreateCommand": 'echo "export GITHUB_ACCESS_TOKEN=$VALET_GHCR_PASSWORD" >> ~/.bashrc', "postCreateCommand": "sudo bash .devcontainer/setupcodespace.sh ${VALET_GHCR_PASSWORD} ${AZURE_DEVOPS_PROJECT} ${AZURE_DEVOPS_ORGANIZATION} ${AZURE_DEVOPS_ACCESS_TOKEN} ${GITHUB_USER} 'https://github.com/' && gh extension install github/gh-valet || echo 'Could not auto-build. Skipping.' " } diff --git a/.devcontainer/setupcodespace.sh b/.devcontainer/setupcodespace.sh index 409335a..c98469a 100644 --- a/.devcontainer/setupcodespace.sh +++ b/.devcontainer/setupcodespace.sh @@ -8,8 +8,6 @@ ghAccess="GITHUB_ACCESS_TOKEN=" azdoAccess="AZURE_DEVOPS_ACCESS_TOKEN=" ghInstanceUrl="GITHUB_INSTANCE_URL=" -cat valet/.env.local - if [ -z "$1" -o -z "$5" ] then echo "Error: Docker Pull Valet not executing because GITHUB_USER and/or VALET_PASSWORD not set" @@ -17,29 +15,14 @@ else docker login ghcr.io/valet-customers --username $5 --password $1 docker pull ghcr.io/valet-customers/valet-cli:latest echo "Success: Docker Pull Valet completed" - fi +value=`cat valet/.env.local.template` +echo "$value" > valet/.env.local + if [ -z "$1" -o -z "$2" -o -z "$3" -o -z "$4" -o -z "$6" ] then - value=`cat valet/.env.local.template` - echo "$value" > valet/.env.local - echo "Error: Set envars not set, valid values not passed in" -else - azdoInstanceUrl="https://dev.azure.com/$3" - - value=`cat valet/.env.local.template` - - result="${value/$azdoProject/$azdoProject$2}" - result="${result/$azdoOrg/$azdoOrg$3}" - result="${result/$azdoInstance/$azdoInstance$azdoInstanceUrl}" - result="${result/$ghAccess/$ghAccess$1}" - result="${result/$azdoAccess/$azdoAccess$4}" - result="${result/$ghInstanceUrl/$ghInstanceUrl$6}" - - echo "$result" > valet/.env.local - echo "Success: set envars in valet/.env.local" - + echo "Error: Set envars not set, valid values not passed in. You will have to manually use the valet/.env.local folder" fi echo "Finished setupcodespace.sh" diff --git a/azure_devops/readme.md b/azure_devops/readme.md index d07ac10..105e366 100644 --- a/azure_devops/readme.md +++ b/azure_devops/readme.md @@ -12,20 +12,22 @@ This lab bootstraps a Valet environment using GitHub Codespaces and enables you ## Repo template -1. Click `Use this template` to create this repository inside your GitHub organization. +1. Verify you are in your own Repository created from the landing page [Valet Labs](https://github.com/valet-customers/labs). ## Prerequisites 1. Azure DevOps organization. Please identify or create an Azure DevOps organization to use: [Click to create an Azure DevOps Org](https://docs.microsoft.com/en-us/azure/devops/organizations/accounts/create-organization?toc=%2Fazure%2Fdevops%2Fget-started%2Ftoc.json&bc=%2Fazure%2Fdevops%2Fget-started%2Fbreadcrumb%2Ftoc.json&view=azure-devops) - Note and store the Azure DevOp sorganization name for later. - Note and store the user name you use for your Azure DevOps Organization. It will be an email address. -2. Azure DevOps Project. The default project name for this lab is `ValetBootstrap` There is an Action workflow that will create and populate the Azure DevOps project. No need to create it yourself. Note: The project has to be unique in the Azure DevOps organization. If you already have a project name `ValetBootstrap` please pick a differnt unique project name. +2. Azure DevOps Project. The default project name for this lab is `ValetBootstrap` There is an Action workflow that will create and populate the Azure DevOps project. No need to create it yourself. Note: The project has to be unique in the Azure DevOps organization. If you already have a project name `ValetBootstrap` please pick a different unique project name. - Note and store the Azure DevOps project name for later. 3. Create an Azure DevOps personal access token with the following scopes: - To do so, navigate to Sign in to your organization `https://dev.azure.com/{yourorganization}`. - - From your home page, open `user settings`, and then select `Personal access tokens`. + - Click your `Account management` icon + - Click `user settings` + - Click `Personal access tokens`. - Select `+ New Token` - Name your token, select the organization where you want to use the token, and then set your token to automatically expire after a set number of days. - - Select the following scopes: + - Select the following scopes (Click `Show more scopes` if you don't see all of the below): - Agents Pool: `Read` - Build: `Read & Execute` - Code: `Read & Write` @@ -57,7 +59,7 @@ Steps to create the Codespace secrets. Complete for secret noted above: - Navigate to the `Settings` tab in this repo - Find `Secrets` and click the down arrow - Click `Codespaces` -- Click `New Codespaces Secret` to create a new secret +- Click `New Repository Secret` to create a new secret - Name the secret as noted above - Paste in the value noted above - Click `Add Secret` @@ -67,14 +69,14 @@ Please add the following Action secrets. - `AZURE_DEVOPS_ACCESS_TOKEN`: Add `AZURE_DEVOPS_ACCESS_TOKEN` as the `Name` and the Azure DevOps personal access token created above as the value. -Steps to create the Codespace secret. Complete for secret noted above: +Steps to create the Actions secret. Complete for secret noted above: - Navigate to the `Settings` tab in this repo - Find `Secrets` and click the down arrow - Click `Actions` - Click `New Repository Secret` to create a new secret - Name the secret as noted above -- Paste in the vale noted above +- Paste in the value noted above - Click `Add Secret` ## Azure DevOps project creation @@ -97,14 +99,14 @@ Run the Actions workflow: ## Use Valet with a codespace 1. Start the codespace - - Click the `Code` button above repository + - Click the `Code` with button down arrow above repository on the repository's landing page. - Click the `Codespaces` tab - - Click `New Codespace` + - Click `Create codespaces on main` to create the codespace. If you are in another branch then the `main` branch, the codespace will button will have the current branch specified. - Wait a couple minutes, then verify that the codespace starts up. Once it is fully booted up, the termininal should be present. 2. Verify Valet CLI is installed and working. More information on the [GitHub Valet CLI extension](https://github.com/github/gh-valet) - Verify Valet CLI is installed and working - - Run `gh valet version` in the Visual Studio Code terminal and verify the output looks like the below image. - - If `gh valet version` did not produce a similar image please follow these instructions [Troubleshoot GH Valet extension](#troubleshoot-gh-valet-extension) + - Run `gh valet version` in the Visual Studio Code terminal and verify the output looks like the below image. Note the valet version will be different than below as the latest version gets pulled down. + - If `gh valet version` did not produce a similar image with a version please follow these instructions [Troubleshoot GH Valet extension](#troubleshoot-gh-valet-extension) - Start using Valet by following along with the [Labs for Azure DevOps](#labs-for-azure-devops) ### Example ### diff --git a/azure_devops/valet-audit-lab.md b/azure_devops/valet-audit-lab.md index 5ae8e8a..40aa2dc 100644 --- a/azure_devops/valet-audit-lab.md +++ b/azure_devops/valet-audit-lab.md @@ -5,24 +5,12 @@ In this lab, you will use Valet to `audit` an Azure DevOps organization. The `au - [Perform an audit](#perform-an-audit) - [View audit output](#view-audit-output) - [Review the pipelines](#review-the-pipelines) +- [Next Lab](#next-lab) ## Prerequisites -1. Follow all steps [here](/labs/azure_devops#readme) to set up your environment +1. Follow all steps [here](../azure_devops#readme) to set up your environment 2. Create or start a codespace in this repository (if not started) -3. Verify or add the following values to the `valet/.env.local` file. All values were created [here](/labs/azure_devops#readme) -``` -GITHUB_ACCESS_TOKEN= -GITHUB_INSTANCE_URL=https://github.com/ - -AZURE_DEVOPS_PROJECT= -AZURE_DEVOPS_ORGANIZATION= -AZURE_DEVOPS_INSTANCE_URL= -AZURE_DEVOPS_ACCESS_TOKEN= -``` -### Example ### - -![envlocal](https://user-images.githubusercontent.com/26442605/169069638-0bfa8f89-eaa9-423b-b2b7-447248e63e2b.png) ## Perform an audit You will use the codespace preconfigured in this repository to perform the audit. @@ -60,3 +48,5 @@ The `audit` command grabs the yml, classic, and release pipelines from Azure Dev View the source yml and the proposed GitHub yml ![valet-audit-4](https://user-images.githubusercontent.com/26442605/169615630-8d700081-c631-4b2a-ab1c-e52503f7838f.png) +### Next Lab +[Dry run the migration of an Azure DevOps pipeline to GitHub Actions](valet-dry-run-lab.md) diff --git a/azure_devops/valet-dry-run-lab.md b/azure_devops/valet-dry-run-lab.md index fbdea4d..36ae851 100644 --- a/azure_devops/valet-dry-run-lab.md +++ b/azure_devops/valet-dry-run-lab.md @@ -5,30 +5,18 @@ In this lab, you will use the `valet dry-run` command to convert an Azure DevOps - [Identify the Azure DevOps pipeline ID to use](#identify-the-azure-devops-pipeline-id-to-use) - [Perform a dry run](#perform-a-dry-run) - [View dry-run output](#view-dry-run-output) +- [Next Lab](#next-lab) ## Prerequisites -1. Follow all steps [here](/labs/azure_devops#readme) to set up your environment +1. Follow all steps [here](../azure_devops#readme) to set up your environment 2. Create or start a codespace in this repository (if not started) 3. You have completed the [Valet audit lab](valet-audit-lab.md). -4. Verify or add the following values to the `valet/.env.local` file. All values were created [here](/labs/azure_devops#readme) -``` -GITHUB_ACCESS_TOKEN= -GITHUB_INSTANCE_URL=https://github.com/ - -AZURE_DEVOPS_PROJECT= -AZURE_DEVOPS_ORGANIZATION= -AZURE_DEVOPS_INSTANCE_URL= -AZURE_DEVOPS_ACCESS_TOKEN= -``` -### Example ### - -![envlocal](https://user-images.githubusercontent.com/26442605/169069638-0bfa8f89-eaa9-423b-b2b7-447248e63e2b.png) ## Identify the Azure DevOps pipeline ID to use You will need a pipeline ID to perform the dry run 1. Go to the `valet/ValetBootstrap/pipelines` folder -2. Open the `valet/ValetBootstrap/pipelines/valet-pipeline1.json` file +2. Open the `valet/ValetBootstrap/pipelines/valet-pipeline1.config.json` file 3. Look for the `$.web.href` link 4. At the end of the link is the pipeline ID. Copy or note the ID. @@ -60,3 +48,5 @@ The dry-run output will show you the GitHub Actions yml that will be migrated to ### Example ![valet-dr-3](https://user-images.githubusercontent.com/26442605/169616486-fd5512fa-0761-45fe-a252-5b2ef0926a04.png) +### Next Lab +[Migrate an Azure DevOps pipeline to GitHub Actions](valet-migrate-lab.md) diff --git a/azure_devops/valet-migrate-custom-lab.md b/azure_devops/valet-migrate-custom-lab.md index 97c3654..8420a0e 100644 --- a/azure_devops/valet-migrate-custom-lab.md +++ b/azure_devops/valet-migrate-custom-lab.md @@ -8,23 +8,10 @@ In this lab, you will create a custom plugin that transforms some of the existin ## Prerequisites -1. Follow all steps [here](/labs/azure_devops#readme) to set up your environment +1. Follow all steps [here](../azure_devops#readme) to set up your environment 2. Create or start a codespace in this repository (if not started) 3. Complete the [Valet audit lab](valet-audit-lab.md). 4. Complete the [Valet migrate lab](valet-migrate-lab.md). -5. Verify or add the following values to the `./valet/.env.local` file. All values were created [here](/labs/azure_devops#readme) -``` -GITHUB_ACCESS_TOKEN= -GITHUB_INSTANCE_URL=https://github.com/ - -AZURE_DEVOPS_PROJECT= -AZURE_DEVOPS_ORGANIZATION= -AZURE_DEVOPS_INSTANCE_URL= -AZURE_DEVOPS_ACCESS_TOKEN= -``` -### Example ### - -![envlocal](https://user-images.githubusercontent.com/26442605/169069638-0bfa8f89-eaa9-423b-b2b7-447248e63e2b.png) ## Identify the Azure DevOps pipeline ID to use You will need the `valet-mapper-example` Azure DevOps pipeline ID to perform the migration @@ -34,7 +21,7 @@ You will need the `valet-mapper-example` Azure DevOps pipeline ID to perform the 4. At the end of the link is the pipeline ID. Copy or note the ID. ### Example -![configpipelineid](https://user-images.githubusercontent.com/26442605/161106098-3b9b05ec-ee5d-4b21-ab07-9f05f8cf1d98.png) +![mapperprops](https://user-images.githubusercontent.com/26442605/175090567-525b97a7-60d2-41b7-9dcd-d559ca1c5bd7.png) ## Create a custom transformer diff --git a/azure_devops/valet-migrate-lab.md b/azure_devops/valet-migrate-lab.md index 5053627..a068f15 100644 --- a/azure_devops/valet-migrate-lab.md +++ b/azure_devops/valet-migrate-lab.md @@ -5,25 +5,13 @@ In this lab, you will use the Valet `migrate` command to migrate an Azure DevOps - [Identify the Azure DevOps pipeline ID to use](#identify-the-azure-devops-pipeline-id-to-use) - [Perform a migration](#perform-a-migration) - [View the pull request](#view-the-pull-request) +- [Next Lab](#next-lab) ## Prerequisites -1. Follow all steps [here](/labs/azure_devops#readme) to set up your environment +1. Follow all steps [here](../azure_devops#readme) to set up your environment 2. Create or start a codespace in this repository (if not started) 3. Completed the [Valet audit lab](valet-audit-lab.md). -4. Verify or add the following values to the `./valet/.env.local` file. All values were created [here](/labs/azure_devops#readme) -``` -GITHUB_ACCESS_TOKEN= -GITHUB_INSTANCE_URL=https://github.com/ - -AZURE_DEVOPS_PROJECT= -AZURE_DEVOPS_ORGANIZATION= -AZURE_DEVOPS_INSTANCE_URL= -AZURE_DEVOPS_ACCESS_TOKEN= -``` -### Example ### - -![envlocal](https://user-images.githubusercontent.com/26442605/169069638-0bfa8f89-eaa9-423b-b2b7-447248e63e2b.png) ## Identify the Azure DevOps pipeline ID to use You will need a pipeline ID to perform the migration @@ -67,3 +55,6 @@ The migrate output will show you the pull request on GitHub. ### Example ![migrate-pr](https://user-images.githubusercontent.com/26442605/161110724-f39d9cb9-1992-44c5-bea5-da2fcebb074c.png) + +### Next Lab +[Migrate an Azure DevOps pipeline to GitHub Actions with a custom transformer](valet-migrate-custom-lab.md) diff --git a/readme.md b/readme.md index d5069b2..9577b17 100644 --- a/readme.md +++ b/readme.md @@ -1,14 +1,19 @@ # Welcome to Valet labs! -These Valet labs let you test-drive Valet by bootstrapping the environment of your choosing. Below are the specific functions of the labs. +These Valet labs let you test-drive Valet by bootstrapping the environment of your choosing. The steps to get started with the Valet labs are: +1. Create your own GitHub Repository. See [Prerequisites](#prerequisites) below. +2. Bootstrap your environment. The default page of the lab of your choosing will detail how to configure and run the action to bootstrap the environment. Currently these labs support [Azure DevOps](azure_devops). +3. Run Valet via Codespaces. The codespace has docker running and will update to the latest Valet environment. +4. Proceed with running the labs! -## Bootstrap your environment -The first step toward setting up a bootstrapped environment is to choose what platform to run Valet against. Currently these labs support Azure DevOps. The default page of the lab of your choosing will detail how to configure and run the action to bootstrap the environment. +# Prerequisites +1. Create your own GitHub Repository in your own GitHub Organization or under your user with Codespaces enabled using this Repository as a template. To do so: + - Navigate to the top of this Repository click `Use this template` + - Select the owner of the new Reposiotry. It could be your personal username or an Organization you belong to. + - Name the Repository + - Click `Create repository froom template` + - Proceed to the labs inside of your new Repository. -## Configure and run Codespaces -After you have an environment bootstrapped, you run Valet via Codespaces. The codespace has docker running and will update to the latest Valet environment. - -## Labs -Once you have a bootstrapped environment and Valet running via Codespaces, you can proceed to the labs. +![createtemplate](https://user-images.githubusercontent.com/26442605/174847176-0e515fd3-8107-43e0-af33-70b1ece36d3b.png) ## Environments to bootstrap - [Azure DevOps](azure_devops) From b42894f6ff6ac0ac1096afd43d0a9fee7c7f5475 Mon Sep 17 00:00:00 2001 From: dkalmin Date: Thu, 30 Jun 2022 06:57:51 -0700 Subject: [PATCH 08/59] Adding Get Valet issue template (#4) --- .github/ISSUE_TEMPLATE/get-valet.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/ISSUE_TEMPLATE/get-valet.md diff --git a/.github/ISSUE_TEMPLATE/get-valet.md b/.github/ISSUE_TEMPLATE/get-valet.md new file mode 100644 index 0000000..d21226c --- /dev/null +++ b/.github/ISSUE_TEMPLATE/get-valet.md @@ -0,0 +1,10 @@ +--- +name: Get Valet +about: 'You will get access to the Valet product by submitting this issue. ' +title: Get Valet +labels: getvalet +assignees: dkalmin + +--- + +After this issue is processed you will have access to : https://github.com/valet-customers/distribution From d01d3839e277af0db934d980d5ee6652fb555eda Mon Sep 17 00:00:00 2001 From: dkalmin Date: Thu, 30 Jun 2022 10:26:14 -0700 Subject: [PATCH 09/59] Removing template --- .github/ISSUE_TEMPLATE/get-valet.md | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE/get-valet.md diff --git a/.github/ISSUE_TEMPLATE/get-valet.md b/.github/ISSUE_TEMPLATE/get-valet.md deleted file mode 100644 index d21226c..0000000 --- a/.github/ISSUE_TEMPLATE/get-valet.md +++ /dev/null @@ -1,10 +0,0 @@ ---- -name: Get Valet -about: 'You will get access to the Valet product by submitting this issue. ' -title: Get Valet -labels: getvalet -assignees: dkalmin - ---- - -After this issue is processed you will have access to : https://github.com/valet-customers/distribution From 51a48230c3632f759eb77f56845bbddfeddb553e Mon Sep 17 00:00:00 2001 From: dkalmin Date: Thu, 30 Jun 2022 11:03:51 -0700 Subject: [PATCH 10/59] Adding GetValet instructions (#5) * Adding GetValet instructions * Update readme.md * Update readme.md * Update readme.md * Update readme.md * Update readme.md Co-authored-by: Ethan Dennis * Update readme.md Co-authored-by: Ethan Dennis Co-authored-by: Ethan Dennis --- readme.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index 9577b17..690dc5c 100644 --- a/readme.md +++ b/readme.md @@ -1,12 +1,13 @@ # Welcome to Valet labs! -These Valet labs let you test-drive Valet by bootstrapping the environment of your choosing. The steps to get started with the Valet labs are: -1. Create your own GitHub Repository. See [Prerequisites](#prerequisites) below. +These Valet labs let you test-drive Valet by bootstrapping the environment of your choosing. To get started: +1. Get access to Valet and create your own GitHub Repository. See [Prerequisites](#prerequisites) below. 2. Bootstrap your environment. The default page of the lab of your choosing will detail how to configure and run the action to bootstrap the environment. Currently these labs support [Azure DevOps](azure_devops). 3. Run Valet via Codespaces. The codespace has docker running and will update to the latest Valet environment. 4. Proceed with running the labs! # Prerequisites -1. Create your own GitHub Repository in your own GitHub Organization or under your user with Codespaces enabled using this Repository as a template. To do so: +1. Valet is currently private and customers must be onboarded prior to using it. Please reach out to [GitHub Sales](https://github.com/enterprise/contact) to inquire about being granted access. +2. Create your own GitHub Repository in your own GitHub Organization or under your user with Codespaces enabled using this Repository as a template. To do so: - Navigate to the top of this Repository click `Use this template` - Select the owner of the new Reposiotry. It could be your personal username or an Organization you belong to. - Name the Repository From 7f5fd852e3de800716b968241343193b8f8a529a Mon Sep 17 00:00:00 2001 From: dkalmin Date: Thu, 30 Jun 2022 12:37:28 -0700 Subject: [PATCH 11/59] Updating Azure DevOps scopes (#6) * Update readme.md * Update valet-migrate-lab.md * Update valet-migrate-custom-lab.md * Update valet-migrate-custom-lab.md * Update azure_devops/valet-migrate-lab.md Co-authored-by: Ethan Dennis * Update azure_devops/valet-migrate-custom-lab.md Co-authored-by: Ethan Dennis Co-authored-by: Ethan Dennis --- azure_devops/readme.md | 1 + azure_devops/valet-migrate-custom-lab.md | 7 ++++--- azure_devops/valet-migrate-lab.md | 3 +-- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/azure_devops/readme.md b/azure_devops/readme.md index 105e366..f8d250e 100644 --- a/azure_devops/readme.md +++ b/azure_devops/readme.md @@ -34,6 +34,7 @@ This lab bootstraps a Valet environment using GitHub Codespaces and enables you - Project and Team: `Read, Write, & Manage` - Release: `Read` - Service Connections: `Read` + - Task Groups (Read) - Variable Groups: `Read` - Click `Create` - Copy the PAT somewhere safe and temporary. diff --git a/azure_devops/valet-migrate-custom-lab.md b/azure_devops/valet-migrate-custom-lab.md index 8420a0e..eb7ca67 100644 --- a/azure_devops/valet-migrate-custom-lab.md +++ b/azure_devops/valet-migrate-custom-lab.md @@ -4,6 +4,7 @@ In this lab, you will create a custom plugin that transforms some of the existin - [Prerequisites](#prerequisites) - [Identify the Azure DevOps pipeline ID to use](#identify-the-azure-devops-pipeline-id-to-use) - [Create a custom transformer](#create-a-custom-transformer) +- [Migrate with a custom transformer](#migrate-with-a-custom-transformer) - [View the pull request](#view-the-pull-request) ## Prerequisites @@ -67,13 +68,13 @@ transform "DotNetCoreCLI@2" do |item| end ``` -Run the `migrate` command with the transformer again and pass it the custom plugin. Look at the result and see if it results in a successful build. +## Migrate with a custom transformer + +Run the `gh valet migrate` command from the `valet` directory with the transformer again and pass it the custom plugin. Look at the result and see if it results in a successful build. ``` -cd valet gh valet migrate azure-devops pipeline --target-url https://github.com/GITHUB-ORG/GITHUB-REPO --pipeline-id PIPELINE-ID --custom-transformers plugin/DotNetCoreCLI.rb --output-dir migrate ``` -Now, from the `./valet` folder in your repository, run `gh valet migrate` with the custom transformer to migrate the pipeline to GitHub Actions: ### Example ![valet-cm-1](https://user-images.githubusercontent.com/26442605/169618556-7c79b34b-6d4c-48d5-98e5-7f8d771117a5.png) diff --git a/azure_devops/valet-migrate-lab.md b/azure_devops/valet-migrate-lab.md index a068f15..3fa1029 100644 --- a/azure_devops/valet-migrate-lab.md +++ b/azure_devops/valet-migrate-lab.md @@ -33,9 +33,8 @@ You will use the codespace preconfigured in this repository to perform the migra - `GITHUB-ORG` with the name of your organization. - `GITHUB-REPO` with the name of your repository. - `PIPELINE-ID` with your pipeline ID. -4. Now, from the `./valet` folder in your repository, run `valet migrate` to migrate the pipeline to GitHub Actions. +4. Run `gh valet migrate` from the `valet` directory to migrate the pipeline to GitHub Actions.. ``` -cd valet gh valet migrate azure-devops pipeline --target-url https://github.com/GITHUB-ORG/GITHUB-REPO --pipeline-id PIPELINE-ID --output-dir migrate ``` From b75238c3f622368d00e72f879f6d2c0074b6cc1c Mon Sep 17 00:00:00 2001 From: dkalmin Date: Thu, 30 Jun 2022 12:39:24 -0700 Subject: [PATCH 12/59] fixing scopes (#7) Update readme.md --- azure_devops/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure_devops/readme.md b/azure_devops/readme.md index f8d250e..ba0c2e5 100644 --- a/azure_devops/readme.md +++ b/azure_devops/readme.md @@ -34,7 +34,7 @@ This lab bootstraps a Valet environment using GitHub Codespaces and enables you - Project and Team: `Read, Write, & Manage` - Release: `Read` - Service Connections: `Read` - - Task Groups (Read) + - Task Groups: `Read` - Variable Groups: `Read` - Click `Create` - Copy the PAT somewhere safe and temporary. From 499c26ca676a69b95ace27658c2d4e413e300a20 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Mon, 8 Aug 2022 10:28:10 -0700 Subject: [PATCH 13/59] Updated gitignore --- .gitignore | 3 --- 1 file changed, 3 deletions(-) diff --git a/.gitignore b/.gitignore index 58996e1..45805d9 100644 --- a/.gitignore +++ b/.gitignore @@ -3,11 +3,8 @@ ## ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore -<<<<<<< HEAD .tmp -======= ->>>>>>> main # User-specific files *.rsuser *.suo From 052cac3febf365db6a1b9ba082d7dbb160d05505 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Mon, 8 Aug 2022 11:47:54 -0700 Subject: [PATCH 14/59] Delete valet-pipeline3.yml --- .../pipelines/yml/valet-pipeline3.yml | 22 ------------------- 1 file changed, 22 deletions(-) delete mode 100644 azure_devops/pipelines/yml/valet-pipeline3.yml diff --git a/azure_devops/pipelines/yml/valet-pipeline3.yml b/azure_devops/pipelines/yml/valet-pipeline3.yml deleted file mode 100644 index d09df8c..0000000 --- a/azure_devops/pipelines/yml/valet-pipeline3.yml +++ /dev/null @@ -1,22 +0,0 @@ -trigger: -- build - -variables: - - name: OLD - value: "SECRET" - -pool: MyPool - -steps: -- script: echo Hello, world! - displayName: 'Run a one-line script' - -- task: GoTool@0 - inputs: - version: '1.10' -- task: AzureFunctionApp@1 - inputs: - azureSubscription: 'ACE CAT: valet-testing' - appType: 'functionAppLinux' - appName: 'demo' - package: '$(System.DefaultWorkingDirectory)/**/*.zip' From 93c3d8009f38863454a4eb2a86fbf480ca70abe0 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Mon, 8 Aug 2022 12:47:26 -0700 Subject: [PATCH 15/59] Moved location of pipelines and setup script --- jenkins/{jenkins_setup => bootstrap}/Dockerfile | 2 +- jenkins/{jenkins_setup => bootstrap}/casc.yaml | 0 .../pipelines}/monas_dev_work/config.xml | 0 .../monas_dev_work/jobs/monas_freestyle/builds/1/build.xml | 0 .../monas_dev_work/jobs/monas_freestyle/builds/1/changelog.xml | 0 .../pipelines}/monas_dev_work/jobs/monas_freestyle/builds/1/log | 0 .../monas_dev_work/jobs/monas_freestyle/builds/10/build.xml | 0 .../monas_dev_work/jobs/monas_freestyle/builds/10/changelog.xml | 0 .../monas_dev_work/jobs/monas_freestyle/builds/10/log | 0 .../monas_dev_work/jobs/monas_freestyle/builds/2/build.xml | 0 .../monas_dev_work/jobs/monas_freestyle/builds/2/changelog.xml | 0 .../pipelines}/monas_dev_work/jobs/monas_freestyle/builds/2/log | 0 .../monas_dev_work/jobs/monas_freestyle/builds/3/build.xml | 0 .../monas_dev_work/jobs/monas_freestyle/builds/3/changelog.xml | 0 .../pipelines}/monas_dev_work/jobs/monas_freestyle/builds/3/log | 0 .../monas_dev_work/jobs/monas_freestyle/builds/4/build.xml | 0 .../monas_dev_work/jobs/monas_freestyle/builds/4/changelog.xml | 0 .../pipelines}/monas_dev_work/jobs/monas_freestyle/builds/4/log | 0 .../monas_dev_work/jobs/monas_freestyle/builds/5/build.xml | 0 .../monas_dev_work/jobs/monas_freestyle/builds/5/changelog.xml | 0 .../pipelines}/monas_dev_work/jobs/monas_freestyle/builds/5/log | 0 .../monas_dev_work/jobs/monas_freestyle/builds/6/build.xml | 0 .../monas_dev_work/jobs/monas_freestyle/builds/6/changelog.xml | 0 .../pipelines}/monas_dev_work/jobs/monas_freestyle/builds/6/log | 0 .../monas_dev_work/jobs/monas_freestyle/builds/7/build.xml | 0 .../monas_dev_work/jobs/monas_freestyle/builds/7/changelog.xml | 0 .../pipelines}/monas_dev_work/jobs/monas_freestyle/builds/7/log | 0 .../monas_dev_work/jobs/monas_freestyle/builds/8/build.xml | 0 .../monas_dev_work/jobs/monas_freestyle/builds/8/changelog.xml | 0 .../pipelines}/monas_dev_work/jobs/monas_freestyle/builds/8/log | 0 .../monas_dev_work/jobs/monas_freestyle/builds/9/build.xml | 0 .../monas_dev_work/jobs/monas_freestyle/builds/9/changelog.xml | 0 .../pipelines}/monas_dev_work/jobs/monas_freestyle/builds/9/log | 0 .../monas_dev_work/jobs/monas_freestyle/builds/legacyIds | 0 .../monas_dev_work/jobs/monas_freestyle/builds/permalinks | 0 .../pipelines}/monas_dev_work/jobs/monas_freestyle/config.xml | 0 .../monas_dev_work/jobs/monas_freestyle/nextBuildNumber | 0 .../monas_dev_work/jobs/monas_pipeline/builds/1/build.xml | 0 .../pipelines}/monas_dev_work/jobs/monas_pipeline/builds/1/log | 0 .../monas_dev_work/jobs/monas_pipeline/builds/1/log-index | 0 .../monas_dev_work/jobs/monas_pipeline/builds/1/workflow/10.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/1/workflow/11.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/1/workflow/12.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/1/workflow/13.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/1/workflow/14.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/1/workflow/2.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/1/workflow/3.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/1/workflow/4.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/1/workflow/5.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/1/workflow/6.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/1/workflow/7.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/1/workflow/8.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/1/workflow/9.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/10/build.xml | 0 .../pipelines}/monas_dev_work/jobs/monas_pipeline/builds/10/log | 0 .../monas_dev_work/jobs/monas_pipeline/builds/10/log-index | 0 .../jobs/monas_pipeline/builds/10/workflow/10.xml | 0 .../jobs/monas_pipeline/builds/10/workflow/11.xml | 0 .../jobs/monas_pipeline/builds/10/workflow/12.xml | 0 .../jobs/monas_pipeline/builds/10/workflow/13.xml | 0 .../jobs/monas_pipeline/builds/10/workflow/14.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/10/workflow/2.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/10/workflow/3.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/10/workflow/4.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/10/workflow/5.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/10/workflow/6.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/10/workflow/7.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/10/workflow/8.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/10/workflow/9.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/11/build.xml | 0 .../pipelines}/monas_dev_work/jobs/monas_pipeline/builds/11/log | 0 .../monas_dev_work/jobs/monas_pipeline/builds/11/log-index | 0 .../jobs/monas_pipeline/builds/11/workflow/10.xml | 0 .../jobs/monas_pipeline/builds/11/workflow/11.xml | 0 .../jobs/monas_pipeline/builds/11/workflow/12.xml | 0 .../jobs/monas_pipeline/builds/11/workflow/13.xml | 0 .../jobs/monas_pipeline/builds/11/workflow/14.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/11/workflow/2.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/11/workflow/3.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/11/workflow/4.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/11/workflow/5.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/11/workflow/6.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/11/workflow/7.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/11/workflow/8.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/11/workflow/9.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/12/build.xml | 0 .../pipelines}/monas_dev_work/jobs/monas_pipeline/builds/12/log | 0 .../monas_dev_work/jobs/monas_pipeline/builds/12/log-index | 0 .../jobs/monas_pipeline/builds/12/workflow/10.xml | 0 .../jobs/monas_pipeline/builds/12/workflow/11.xml | 0 .../jobs/monas_pipeline/builds/12/workflow/12.xml | 0 .../jobs/monas_pipeline/builds/12/workflow/13.xml | 0 .../jobs/monas_pipeline/builds/12/workflow/14.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/12/workflow/2.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/12/workflow/3.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/12/workflow/4.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/12/workflow/5.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/12/workflow/6.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/12/workflow/7.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/12/workflow/8.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/12/workflow/9.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/13/build.xml | 0 .../pipelines}/monas_dev_work/jobs/monas_pipeline/builds/13/log | 0 .../monas_dev_work/jobs/monas_pipeline/builds/13/log-index | 0 .../jobs/monas_pipeline/builds/13/workflow/10.xml | 0 .../jobs/monas_pipeline/builds/13/workflow/11.xml | 0 .../jobs/monas_pipeline/builds/13/workflow/12.xml | 0 .../jobs/monas_pipeline/builds/13/workflow/13.xml | 0 .../jobs/monas_pipeline/builds/13/workflow/14.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/13/workflow/2.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/13/workflow/3.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/13/workflow/4.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/13/workflow/5.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/13/workflow/6.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/13/workflow/7.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/13/workflow/8.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/13/workflow/9.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/2/build.xml | 0 .../pipelines}/monas_dev_work/jobs/monas_pipeline/builds/2/log | 0 .../monas_dev_work/jobs/monas_pipeline/builds/2/log-index | 0 .../monas_dev_work/jobs/monas_pipeline/builds/2/workflow/10.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/2/workflow/11.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/2/workflow/12.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/2/workflow/13.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/2/workflow/14.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/2/workflow/2.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/2/workflow/3.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/2/workflow/4.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/2/workflow/5.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/2/workflow/6.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/2/workflow/7.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/2/workflow/8.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/2/workflow/9.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/3/build.xml | 0 .../pipelines}/monas_dev_work/jobs/monas_pipeline/builds/3/log | 0 .../monas_dev_work/jobs/monas_pipeline/builds/3/log-index | 0 .../monas_dev_work/jobs/monas_pipeline/builds/3/workflow/10.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/3/workflow/11.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/3/workflow/12.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/3/workflow/13.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/3/workflow/14.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/3/workflow/2.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/3/workflow/3.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/3/workflow/4.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/3/workflow/5.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/3/workflow/6.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/3/workflow/7.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/3/workflow/8.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/3/workflow/9.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/4/build.xml | 0 .../pipelines}/monas_dev_work/jobs/monas_pipeline/builds/4/log | 0 .../monas_dev_work/jobs/monas_pipeline/builds/4/log-index | 0 .../monas_dev_work/jobs/monas_pipeline/builds/4/workflow/10.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/4/workflow/11.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/4/workflow/12.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/4/workflow/13.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/4/workflow/14.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/4/workflow/2.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/4/workflow/3.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/4/workflow/4.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/4/workflow/5.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/4/workflow/6.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/4/workflow/7.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/4/workflow/8.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/4/workflow/9.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/5/build.xml | 0 .../pipelines}/monas_dev_work/jobs/monas_pipeline/builds/5/log | 0 .../monas_dev_work/jobs/monas_pipeline/builds/5/log-index | 0 .../monas_dev_work/jobs/monas_pipeline/builds/5/workflow/10.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/5/workflow/11.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/5/workflow/12.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/5/workflow/13.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/5/workflow/14.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/5/workflow/2.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/5/workflow/3.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/5/workflow/4.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/5/workflow/5.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/5/workflow/6.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/5/workflow/7.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/5/workflow/8.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/5/workflow/9.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/6/build.xml | 0 .../pipelines}/monas_dev_work/jobs/monas_pipeline/builds/6/log | 0 .../monas_dev_work/jobs/monas_pipeline/builds/6/log-index | 0 .../monas_dev_work/jobs/monas_pipeline/builds/6/workflow/10.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/6/workflow/11.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/6/workflow/12.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/6/workflow/13.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/6/workflow/14.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/6/workflow/2.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/6/workflow/3.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/6/workflow/4.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/6/workflow/5.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/6/workflow/6.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/6/workflow/7.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/6/workflow/8.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/6/workflow/9.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/7/build.xml | 0 .../pipelines}/monas_dev_work/jobs/monas_pipeline/builds/7/log | 0 .../monas_dev_work/jobs/monas_pipeline/builds/7/log-index | 0 .../monas_dev_work/jobs/monas_pipeline/builds/7/workflow/10.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/7/workflow/11.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/7/workflow/12.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/7/workflow/13.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/7/workflow/14.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/7/workflow/2.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/7/workflow/3.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/7/workflow/4.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/7/workflow/5.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/7/workflow/6.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/7/workflow/7.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/7/workflow/8.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/7/workflow/9.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/8/build.xml | 0 .../pipelines}/monas_dev_work/jobs/monas_pipeline/builds/8/log | 0 .../monas_dev_work/jobs/monas_pipeline/builds/8/log-index | 0 .../monas_dev_work/jobs/monas_pipeline/builds/8/workflow/10.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/8/workflow/11.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/8/workflow/12.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/8/workflow/13.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/8/workflow/14.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/8/workflow/2.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/8/workflow/3.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/8/workflow/4.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/8/workflow/5.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/8/workflow/6.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/8/workflow/7.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/8/workflow/8.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/8/workflow/9.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/9/build.xml | 0 .../pipelines}/monas_dev_work/jobs/monas_pipeline/builds/9/log | 0 .../monas_dev_work/jobs/monas_pipeline/builds/9/log-index | 0 .../monas_dev_work/jobs/monas_pipeline/builds/9/workflow/10.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/9/workflow/11.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/9/workflow/12.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/9/workflow/13.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/9/workflow/14.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/9/workflow/2.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/9/workflow/3.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/9/workflow/4.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/9/workflow/5.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/9/workflow/6.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/9/workflow/7.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/9/workflow/8.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/9/workflow/9.xml | 0 .../monas_dev_work/jobs/monas_pipeline/builds/legacyIds | 0 .../monas_dev_work/jobs/monas_pipeline/builds/permalinks | 0 .../pipelines}/monas_dev_work/jobs/monas_pipeline/config.xml | 0 .../monas_dev_work/jobs/monas_pipeline/nextBuildNumber | 0 .../pipelines}/test_freestyle_project/builds/1/build.xml | 0 .../pipelines}/test_freestyle_project/builds/1/changelog.xml | 0 .../pipelines}/test_freestyle_project/builds/1/log | 0 .../pipelines}/test_freestyle_project/builds/10/build.xml | 0 .../pipelines}/test_freestyle_project/builds/10/changelog.xml | 0 .../pipelines}/test_freestyle_project/builds/10/log | 0 .../pipelines}/test_freestyle_project/builds/11/build.xml | 0 .../pipelines}/test_freestyle_project/builds/11/changelog.xml | 0 .../pipelines}/test_freestyle_project/builds/11/log | 0 .../pipelines}/test_freestyle_project/builds/12/build.xml | 0 .../pipelines}/test_freestyle_project/builds/12/changelog.xml | 0 .../pipelines}/test_freestyle_project/builds/12/log | 0 .../pipelines}/test_freestyle_project/builds/2/build.xml | 0 .../pipelines}/test_freestyle_project/builds/2/changelog.xml | 0 .../pipelines}/test_freestyle_project/builds/2/log | 0 .../pipelines}/test_freestyle_project/builds/3/build.xml | 0 .../pipelines}/test_freestyle_project/builds/3/changelog.xml | 0 .../pipelines}/test_freestyle_project/builds/3/log | 0 .../pipelines}/test_freestyle_project/builds/4/build.xml | 0 .../pipelines}/test_freestyle_project/builds/4/changelog.xml | 0 .../pipelines}/test_freestyle_project/builds/4/log | 0 .../pipelines}/test_freestyle_project/builds/5/build.xml | 0 .../pipelines}/test_freestyle_project/builds/5/changelog.xml | 0 .../pipelines}/test_freestyle_project/builds/5/log | 0 .../pipelines}/test_freestyle_project/builds/6/build.xml | 0 .../pipelines}/test_freestyle_project/builds/6/changelog.xml | 0 .../pipelines}/test_freestyle_project/builds/6/log | 0 .../pipelines}/test_freestyle_project/builds/7/build.xml | 0 .../pipelines}/test_freestyle_project/builds/7/changelog.xml | 0 .../pipelines}/test_freestyle_project/builds/7/log | 0 .../pipelines}/test_freestyle_project/builds/8/build.xml | 0 .../pipelines}/test_freestyle_project/builds/8/changelog.xml | 0 .../pipelines}/test_freestyle_project/builds/8/log | 0 .../pipelines}/test_freestyle_project/builds/9/build.xml | 0 .../pipelines}/test_freestyle_project/builds/9/changelog.xml | 0 .../pipelines}/test_freestyle_project/builds/9/log | 0 .../pipelines}/test_freestyle_project/builds/legacyIds | 0 .../pipelines}/test_freestyle_project/builds/permalinks | 0 .../pipelines}/test_freestyle_project/config.xml | 0 .../pipelines}/test_freestyle_project/nextBuildNumber | 0 .../pipelines}/test_pipeline/builds/1/build.xml | 0 .../pipelines}/test_pipeline/builds/1/log | 0 .../pipelines}/test_pipeline/builds/1/log-index | 0 .../pipelines}/test_pipeline/builds/1/workflow/10.xml | 0 .../pipelines}/test_pipeline/builds/1/workflow/11.xml | 0 .../pipelines}/test_pipeline/builds/1/workflow/12.xml | 0 .../pipelines}/test_pipeline/builds/1/workflow/13.xml | 0 .../pipelines}/test_pipeline/builds/1/workflow/14.xml | 0 .../pipelines}/test_pipeline/builds/1/workflow/2.xml | 0 .../pipelines}/test_pipeline/builds/1/workflow/3.xml | 0 .../pipelines}/test_pipeline/builds/1/workflow/4.xml | 0 .../pipelines}/test_pipeline/builds/1/workflow/5.xml | 0 .../pipelines}/test_pipeline/builds/1/workflow/6.xml | 0 .../pipelines}/test_pipeline/builds/1/workflow/7.xml | 0 .../pipelines}/test_pipeline/builds/1/workflow/8.xml | 0 .../pipelines}/test_pipeline/builds/1/workflow/9.xml | 0 .../pipelines}/test_pipeline/builds/10/build.xml | 0 .../pipelines}/test_pipeline/builds/10/log | 0 .../pipelines}/test_pipeline/builds/10/log-index | 0 .../pipelines}/test_pipeline/builds/10/workflow/10.xml | 0 .../pipelines}/test_pipeline/builds/10/workflow/11.xml | 0 .../pipelines}/test_pipeline/builds/10/workflow/12.xml | 0 .../pipelines}/test_pipeline/builds/10/workflow/13.xml | 0 .../pipelines}/test_pipeline/builds/10/workflow/14.xml | 0 .../pipelines}/test_pipeline/builds/10/workflow/2.xml | 0 .../pipelines}/test_pipeline/builds/10/workflow/3.xml | 0 .../pipelines}/test_pipeline/builds/10/workflow/4.xml | 0 .../pipelines}/test_pipeline/builds/10/workflow/5.xml | 0 .../pipelines}/test_pipeline/builds/10/workflow/6.xml | 0 .../pipelines}/test_pipeline/builds/10/workflow/7.xml | 0 .../pipelines}/test_pipeline/builds/10/workflow/8.xml | 0 .../pipelines}/test_pipeline/builds/10/workflow/9.xml | 0 .../pipelines}/test_pipeline/builds/11/build.xml | 0 .../pipelines}/test_pipeline/builds/11/log | 0 .../pipelines}/test_pipeline/builds/11/log-index | 0 .../pipelines}/test_pipeline/builds/11/workflow/10.xml | 0 .../pipelines}/test_pipeline/builds/11/workflow/11.xml | 0 .../pipelines}/test_pipeline/builds/11/workflow/12.xml | 0 .../pipelines}/test_pipeline/builds/11/workflow/13.xml | 0 .../pipelines}/test_pipeline/builds/11/workflow/14.xml | 0 .../pipelines}/test_pipeline/builds/11/workflow/2.xml | 0 .../pipelines}/test_pipeline/builds/11/workflow/3.xml | 0 .../pipelines}/test_pipeline/builds/11/workflow/4.xml | 0 .../pipelines}/test_pipeline/builds/11/workflow/5.xml | 0 .../pipelines}/test_pipeline/builds/11/workflow/6.xml | 0 .../pipelines}/test_pipeline/builds/11/workflow/7.xml | 0 .../pipelines}/test_pipeline/builds/11/workflow/8.xml | 0 .../pipelines}/test_pipeline/builds/11/workflow/9.xml | 0 .../pipelines}/test_pipeline/builds/12/build.xml | 0 .../pipelines}/test_pipeline/builds/12/log | 0 .../pipelines}/test_pipeline/builds/12/log-index | 0 .../pipelines}/test_pipeline/builds/12/workflow/10.xml | 0 .../pipelines}/test_pipeline/builds/12/workflow/11.xml | 0 .../pipelines}/test_pipeline/builds/12/workflow/12.xml | 0 .../pipelines}/test_pipeline/builds/12/workflow/13.xml | 0 .../pipelines}/test_pipeline/builds/12/workflow/14.xml | 0 .../pipelines}/test_pipeline/builds/12/workflow/2.xml | 0 .../pipelines}/test_pipeline/builds/12/workflow/3.xml | 0 .../pipelines}/test_pipeline/builds/12/workflow/4.xml | 0 .../pipelines}/test_pipeline/builds/12/workflow/5.xml | 0 .../pipelines}/test_pipeline/builds/12/workflow/6.xml | 0 .../pipelines}/test_pipeline/builds/12/workflow/7.xml | 0 .../pipelines}/test_pipeline/builds/12/workflow/8.xml | 0 .../pipelines}/test_pipeline/builds/12/workflow/9.xml | 0 .../pipelines}/test_pipeline/builds/13/build.xml | 0 .../pipelines}/test_pipeline/builds/13/log | 0 .../pipelines}/test_pipeline/builds/13/log-index | 0 .../pipelines}/test_pipeline/builds/13/workflow/10.xml | 0 .../pipelines}/test_pipeline/builds/13/workflow/11.xml | 0 .../pipelines}/test_pipeline/builds/13/workflow/12.xml | 0 .../pipelines}/test_pipeline/builds/13/workflow/13.xml | 0 .../pipelines}/test_pipeline/builds/13/workflow/14.xml | 0 .../pipelines}/test_pipeline/builds/13/workflow/2.xml | 0 .../pipelines}/test_pipeline/builds/13/workflow/3.xml | 0 .../pipelines}/test_pipeline/builds/13/workflow/4.xml | 0 .../pipelines}/test_pipeline/builds/13/workflow/5.xml | 0 .../pipelines}/test_pipeline/builds/13/workflow/6.xml | 0 .../pipelines}/test_pipeline/builds/13/workflow/7.xml | 0 .../pipelines}/test_pipeline/builds/13/workflow/8.xml | 0 .../pipelines}/test_pipeline/builds/13/workflow/9.xml | 0 .../pipelines}/test_pipeline/builds/14/build.xml | 0 .../pipelines}/test_pipeline/builds/14/log | 0 .../pipelines}/test_pipeline/builds/14/log-index | 0 .../pipelines}/test_pipeline/builds/14/workflow/10.xml | 0 .../pipelines}/test_pipeline/builds/14/workflow/11.xml | 0 .../pipelines}/test_pipeline/builds/14/workflow/12.xml | 0 .../pipelines}/test_pipeline/builds/14/workflow/13.xml | 0 .../pipelines}/test_pipeline/builds/14/workflow/14.xml | 0 .../pipelines}/test_pipeline/builds/14/workflow/2.xml | 0 .../pipelines}/test_pipeline/builds/14/workflow/3.xml | 0 .../pipelines}/test_pipeline/builds/14/workflow/4.xml | 0 .../pipelines}/test_pipeline/builds/14/workflow/5.xml | 0 .../pipelines}/test_pipeline/builds/14/workflow/6.xml | 0 .../pipelines}/test_pipeline/builds/14/workflow/7.xml | 0 .../pipelines}/test_pipeline/builds/14/workflow/8.xml | 0 .../pipelines}/test_pipeline/builds/14/workflow/9.xml | 0 .../pipelines}/test_pipeline/builds/15/build.xml | 0 .../pipelines}/test_pipeline/builds/15/log | 0 .../pipelines}/test_pipeline/builds/15/log-index | 0 .../pipelines}/test_pipeline/builds/15/workflow/10.xml | 0 .../pipelines}/test_pipeline/builds/15/workflow/11.xml | 0 .../pipelines}/test_pipeline/builds/15/workflow/12.xml | 0 .../pipelines}/test_pipeline/builds/15/workflow/13.xml | 0 .../pipelines}/test_pipeline/builds/15/workflow/14.xml | 0 .../pipelines}/test_pipeline/builds/15/workflow/2.xml | 0 .../pipelines}/test_pipeline/builds/15/workflow/3.xml | 0 .../pipelines}/test_pipeline/builds/15/workflow/4.xml | 0 .../pipelines}/test_pipeline/builds/15/workflow/5.xml | 0 .../pipelines}/test_pipeline/builds/15/workflow/6.xml | 0 .../pipelines}/test_pipeline/builds/15/workflow/7.xml | 0 .../pipelines}/test_pipeline/builds/15/workflow/8.xml | 0 .../pipelines}/test_pipeline/builds/15/workflow/9.xml | 0 .../pipelines}/test_pipeline/builds/16/build.xml | 0 .../pipelines}/test_pipeline/builds/16/log | 0 .../pipelines}/test_pipeline/builds/16/log-index | 0 .../pipelines}/test_pipeline/builds/16/workflow/10.xml | 0 .../pipelines}/test_pipeline/builds/16/workflow/11.xml | 0 .../pipelines}/test_pipeline/builds/16/workflow/12.xml | 0 .../pipelines}/test_pipeline/builds/16/workflow/13.xml | 0 .../pipelines}/test_pipeline/builds/16/workflow/14.xml | 0 .../pipelines}/test_pipeline/builds/16/workflow/2.xml | 0 .../pipelines}/test_pipeline/builds/16/workflow/3.xml | 0 .../pipelines}/test_pipeline/builds/16/workflow/4.xml | 0 .../pipelines}/test_pipeline/builds/16/workflow/5.xml | 0 .../pipelines}/test_pipeline/builds/16/workflow/6.xml | 0 .../pipelines}/test_pipeline/builds/16/workflow/7.xml | 0 .../pipelines}/test_pipeline/builds/16/workflow/8.xml | 0 .../pipelines}/test_pipeline/builds/16/workflow/9.xml | 0 .../pipelines}/test_pipeline/builds/17/build.xml | 0 .../pipelines}/test_pipeline/builds/17/log | 0 .../pipelines}/test_pipeline/builds/17/log-index | 0 .../pipelines}/test_pipeline/builds/17/workflow/10.xml | 0 .../pipelines}/test_pipeline/builds/17/workflow/11.xml | 0 .../pipelines}/test_pipeline/builds/17/workflow/12.xml | 0 .../pipelines}/test_pipeline/builds/17/workflow/13.xml | 0 .../pipelines}/test_pipeline/builds/17/workflow/14.xml | 0 .../pipelines}/test_pipeline/builds/17/workflow/2.xml | 0 .../pipelines}/test_pipeline/builds/17/workflow/3.xml | 0 .../pipelines}/test_pipeline/builds/17/workflow/4.xml | 0 .../pipelines}/test_pipeline/builds/17/workflow/5.xml | 0 .../pipelines}/test_pipeline/builds/17/workflow/6.xml | 0 .../pipelines}/test_pipeline/builds/17/workflow/7.xml | 0 .../pipelines}/test_pipeline/builds/17/workflow/8.xml | 0 .../pipelines}/test_pipeline/builds/17/workflow/9.xml | 0 .../pipelines}/test_pipeline/builds/18/build.xml | 0 .../pipelines}/test_pipeline/builds/18/log | 0 .../pipelines}/test_pipeline/builds/18/log-index | 0 .../pipelines}/test_pipeline/builds/18/workflow/10.xml | 0 .../pipelines}/test_pipeline/builds/18/workflow/11.xml | 0 .../pipelines}/test_pipeline/builds/18/workflow/12.xml | 0 .../pipelines}/test_pipeline/builds/18/workflow/13.xml | 0 .../pipelines}/test_pipeline/builds/18/workflow/14.xml | 0 .../pipelines}/test_pipeline/builds/18/workflow/2.xml | 0 .../pipelines}/test_pipeline/builds/18/workflow/3.xml | 0 .../pipelines}/test_pipeline/builds/18/workflow/4.xml | 0 .../pipelines}/test_pipeline/builds/18/workflow/5.xml | 0 .../pipelines}/test_pipeline/builds/18/workflow/6.xml | 0 .../pipelines}/test_pipeline/builds/18/workflow/7.xml | 0 .../pipelines}/test_pipeline/builds/18/workflow/8.xml | 0 .../pipelines}/test_pipeline/builds/18/workflow/9.xml | 0 .../pipelines}/test_pipeline/builds/19/build.xml | 0 .../pipelines}/test_pipeline/builds/19/log | 0 .../pipelines}/test_pipeline/builds/19/log-index | 0 .../pipelines}/test_pipeline/builds/19/workflow/10.xml | 0 .../pipelines}/test_pipeline/builds/19/workflow/11.xml | 0 .../pipelines}/test_pipeline/builds/19/workflow/12.xml | 0 .../pipelines}/test_pipeline/builds/19/workflow/13.xml | 0 .../pipelines}/test_pipeline/builds/19/workflow/14.xml | 0 .../pipelines}/test_pipeline/builds/19/workflow/2.xml | 0 .../pipelines}/test_pipeline/builds/19/workflow/3.xml | 0 .../pipelines}/test_pipeline/builds/19/workflow/4.xml | 0 .../pipelines}/test_pipeline/builds/19/workflow/5.xml | 0 .../pipelines}/test_pipeline/builds/19/workflow/6.xml | 0 .../pipelines}/test_pipeline/builds/19/workflow/7.xml | 0 .../pipelines}/test_pipeline/builds/19/workflow/8.xml | 0 .../pipelines}/test_pipeline/builds/19/workflow/9.xml | 0 .../pipelines}/test_pipeline/builds/2/build.xml | 0 .../pipelines}/test_pipeline/builds/2/log | 0 .../pipelines}/test_pipeline/builds/2/log-index | 0 .../pipelines}/test_pipeline/builds/2/workflow/10.xml | 0 .../pipelines}/test_pipeline/builds/2/workflow/11.xml | 0 .../pipelines}/test_pipeline/builds/2/workflow/12.xml | 0 .../pipelines}/test_pipeline/builds/2/workflow/13.xml | 0 .../pipelines}/test_pipeline/builds/2/workflow/14.xml | 0 .../pipelines}/test_pipeline/builds/2/workflow/2.xml | 0 .../pipelines}/test_pipeline/builds/2/workflow/3.xml | 0 .../pipelines}/test_pipeline/builds/2/workflow/4.xml | 0 .../pipelines}/test_pipeline/builds/2/workflow/5.xml | 0 .../pipelines}/test_pipeline/builds/2/workflow/6.xml | 0 .../pipelines}/test_pipeline/builds/2/workflow/7.xml | 0 .../pipelines}/test_pipeline/builds/2/workflow/8.xml | 0 .../pipelines}/test_pipeline/builds/2/workflow/9.xml | 0 .../pipelines}/test_pipeline/builds/20/build.xml | 0 .../pipelines}/test_pipeline/builds/20/log | 0 .../pipelines}/test_pipeline/builds/20/log-index | 0 .../pipelines}/test_pipeline/builds/20/workflow/10.xml | 0 .../pipelines}/test_pipeline/builds/20/workflow/11.xml | 0 .../pipelines}/test_pipeline/builds/20/workflow/12.xml | 0 .../pipelines}/test_pipeline/builds/20/workflow/13.xml | 0 .../pipelines}/test_pipeline/builds/20/workflow/14.xml | 0 .../pipelines}/test_pipeline/builds/20/workflow/2.xml | 0 .../pipelines}/test_pipeline/builds/20/workflow/3.xml | 0 .../pipelines}/test_pipeline/builds/20/workflow/4.xml | 0 .../pipelines}/test_pipeline/builds/20/workflow/5.xml | 0 .../pipelines}/test_pipeline/builds/20/workflow/6.xml | 0 .../pipelines}/test_pipeline/builds/20/workflow/7.xml | 0 .../pipelines}/test_pipeline/builds/20/workflow/8.xml | 0 .../pipelines}/test_pipeline/builds/20/workflow/9.xml | 0 .../pipelines}/test_pipeline/builds/21/build.xml | 0 .../pipelines}/test_pipeline/builds/21/log | 0 .../pipelines}/test_pipeline/builds/21/log-index | 0 .../pipelines}/test_pipeline/builds/21/workflow/10.xml | 0 .../pipelines}/test_pipeline/builds/21/workflow/11.xml | 0 .../pipelines}/test_pipeline/builds/21/workflow/12.xml | 0 .../pipelines}/test_pipeline/builds/21/workflow/13.xml | 0 .../pipelines}/test_pipeline/builds/21/workflow/14.xml | 0 .../pipelines}/test_pipeline/builds/21/workflow/2.xml | 0 .../pipelines}/test_pipeline/builds/21/workflow/3.xml | 0 .../pipelines}/test_pipeline/builds/21/workflow/4.xml | 0 .../pipelines}/test_pipeline/builds/21/workflow/5.xml | 0 .../pipelines}/test_pipeline/builds/21/workflow/6.xml | 0 .../pipelines}/test_pipeline/builds/21/workflow/7.xml | 0 .../pipelines}/test_pipeline/builds/21/workflow/8.xml | 0 .../pipelines}/test_pipeline/builds/21/workflow/9.xml | 0 .../pipelines}/test_pipeline/builds/22/build.xml | 0 .../pipelines}/test_pipeline/builds/22/log | 0 .../pipelines}/test_pipeline/builds/22/log-index | 0 .../pipelines}/test_pipeline/builds/22/workflow/10.xml | 0 .../pipelines}/test_pipeline/builds/22/workflow/11.xml | 0 .../pipelines}/test_pipeline/builds/22/workflow/12.xml | 0 .../pipelines}/test_pipeline/builds/22/workflow/13.xml | 0 .../pipelines}/test_pipeline/builds/22/workflow/14.xml | 0 .../pipelines}/test_pipeline/builds/22/workflow/2.xml | 0 .../pipelines}/test_pipeline/builds/22/workflow/3.xml | 0 .../pipelines}/test_pipeline/builds/22/workflow/4.xml | 0 .../pipelines}/test_pipeline/builds/22/workflow/5.xml | 0 .../pipelines}/test_pipeline/builds/22/workflow/6.xml | 0 .../pipelines}/test_pipeline/builds/22/workflow/7.xml | 0 .../pipelines}/test_pipeline/builds/22/workflow/8.xml | 0 .../pipelines}/test_pipeline/builds/22/workflow/9.xml | 0 .../pipelines}/test_pipeline/builds/3/build.xml | 0 .../pipelines}/test_pipeline/builds/3/log | 0 .../pipelines}/test_pipeline/builds/3/log-index | 0 .../pipelines}/test_pipeline/builds/3/workflow/10.xml | 0 .../pipelines}/test_pipeline/builds/3/workflow/11.xml | 0 .../pipelines}/test_pipeline/builds/3/workflow/12.xml | 0 .../pipelines}/test_pipeline/builds/3/workflow/13.xml | 0 .../pipelines}/test_pipeline/builds/3/workflow/14.xml | 0 .../pipelines}/test_pipeline/builds/3/workflow/2.xml | 0 .../pipelines}/test_pipeline/builds/3/workflow/3.xml | 0 .../pipelines}/test_pipeline/builds/3/workflow/4.xml | 0 .../pipelines}/test_pipeline/builds/3/workflow/5.xml | 0 .../pipelines}/test_pipeline/builds/3/workflow/6.xml | 0 .../pipelines}/test_pipeline/builds/3/workflow/7.xml | 0 .../pipelines}/test_pipeline/builds/3/workflow/8.xml | 0 .../pipelines}/test_pipeline/builds/3/workflow/9.xml | 0 .../pipelines}/test_pipeline/builds/4/build.xml | 0 .../pipelines}/test_pipeline/builds/4/log | 0 .../pipelines}/test_pipeline/builds/4/log-index | 0 .../pipelines}/test_pipeline/builds/4/workflow/10.xml | 0 .../pipelines}/test_pipeline/builds/4/workflow/11.xml | 0 .../pipelines}/test_pipeline/builds/4/workflow/12.xml | 0 .../pipelines}/test_pipeline/builds/4/workflow/13.xml | 0 .../pipelines}/test_pipeline/builds/4/workflow/14.xml | 0 .../pipelines}/test_pipeline/builds/4/workflow/2.xml | 0 .../pipelines}/test_pipeline/builds/4/workflow/3.xml | 0 .../pipelines}/test_pipeline/builds/4/workflow/4.xml | 0 .../pipelines}/test_pipeline/builds/4/workflow/5.xml | 0 .../pipelines}/test_pipeline/builds/4/workflow/6.xml | 0 .../pipelines}/test_pipeline/builds/4/workflow/7.xml | 0 .../pipelines}/test_pipeline/builds/4/workflow/8.xml | 0 .../pipelines}/test_pipeline/builds/4/workflow/9.xml | 0 .../pipelines}/test_pipeline/builds/5/build.xml | 0 .../pipelines}/test_pipeline/builds/5/log | 0 .../pipelines}/test_pipeline/builds/5/log-index | 0 .../pipelines}/test_pipeline/builds/5/workflow/10.xml | 0 .../pipelines}/test_pipeline/builds/5/workflow/11.xml | 0 .../pipelines}/test_pipeline/builds/5/workflow/12.xml | 0 .../pipelines}/test_pipeline/builds/5/workflow/13.xml | 0 .../pipelines}/test_pipeline/builds/5/workflow/14.xml | 0 .../pipelines}/test_pipeline/builds/5/workflow/2.xml | 0 .../pipelines}/test_pipeline/builds/5/workflow/3.xml | 0 .../pipelines}/test_pipeline/builds/5/workflow/4.xml | 0 .../pipelines}/test_pipeline/builds/5/workflow/5.xml | 0 .../pipelines}/test_pipeline/builds/5/workflow/6.xml | 0 .../pipelines}/test_pipeline/builds/5/workflow/7.xml | 0 .../pipelines}/test_pipeline/builds/5/workflow/8.xml | 0 .../pipelines}/test_pipeline/builds/5/workflow/9.xml | 0 .../pipelines}/test_pipeline/builds/6/build.xml | 0 .../pipelines}/test_pipeline/builds/6/log | 0 .../pipelines}/test_pipeline/builds/6/log-index | 0 .../pipelines}/test_pipeline/builds/6/workflow/10.xml | 0 .../pipelines}/test_pipeline/builds/6/workflow/11.xml | 0 .../pipelines}/test_pipeline/builds/6/workflow/12.xml | 0 .../pipelines}/test_pipeline/builds/6/workflow/13.xml | 0 .../pipelines}/test_pipeline/builds/6/workflow/14.xml | 0 .../pipelines}/test_pipeline/builds/6/workflow/2.xml | 0 .../pipelines}/test_pipeline/builds/6/workflow/3.xml | 0 .../pipelines}/test_pipeline/builds/6/workflow/4.xml | 0 .../pipelines}/test_pipeline/builds/6/workflow/5.xml | 0 .../pipelines}/test_pipeline/builds/6/workflow/6.xml | 0 .../pipelines}/test_pipeline/builds/6/workflow/7.xml | 0 .../pipelines}/test_pipeline/builds/6/workflow/8.xml | 0 .../pipelines}/test_pipeline/builds/6/workflow/9.xml | 0 .../pipelines}/test_pipeline/builds/7/build.xml | 0 .../pipelines}/test_pipeline/builds/7/log | 0 .../pipelines}/test_pipeline/builds/7/log-index | 0 .../pipelines}/test_pipeline/builds/7/workflow/10.xml | 0 .../pipelines}/test_pipeline/builds/7/workflow/11.xml | 0 .../pipelines}/test_pipeline/builds/7/workflow/12.xml | 0 .../pipelines}/test_pipeline/builds/7/workflow/13.xml | 0 .../pipelines}/test_pipeline/builds/7/workflow/14.xml | 0 .../pipelines}/test_pipeline/builds/7/workflow/2.xml | 0 .../pipelines}/test_pipeline/builds/7/workflow/3.xml | 0 .../pipelines}/test_pipeline/builds/7/workflow/4.xml | 0 .../pipelines}/test_pipeline/builds/7/workflow/5.xml | 0 .../pipelines}/test_pipeline/builds/7/workflow/6.xml | 0 .../pipelines}/test_pipeline/builds/7/workflow/7.xml | 0 .../pipelines}/test_pipeline/builds/7/workflow/8.xml | 0 .../pipelines}/test_pipeline/builds/7/workflow/9.xml | 0 .../pipelines}/test_pipeline/builds/8/build.xml | 0 .../pipelines}/test_pipeline/builds/8/log | 0 .../pipelines}/test_pipeline/builds/8/log-index | 0 .../pipelines}/test_pipeline/builds/8/workflow/10.xml | 0 .../pipelines}/test_pipeline/builds/8/workflow/11.xml | 0 .../pipelines}/test_pipeline/builds/8/workflow/12.xml | 0 .../pipelines}/test_pipeline/builds/8/workflow/13.xml | 0 .../pipelines}/test_pipeline/builds/8/workflow/14.xml | 0 .../pipelines}/test_pipeline/builds/8/workflow/2.xml | 0 .../pipelines}/test_pipeline/builds/8/workflow/3.xml | 0 .../pipelines}/test_pipeline/builds/8/workflow/4.xml | 0 .../pipelines}/test_pipeline/builds/8/workflow/5.xml | 0 .../pipelines}/test_pipeline/builds/8/workflow/6.xml | 0 .../pipelines}/test_pipeline/builds/8/workflow/7.xml | 0 .../pipelines}/test_pipeline/builds/8/workflow/8.xml | 0 .../pipelines}/test_pipeline/builds/8/workflow/9.xml | 0 .../pipelines}/test_pipeline/builds/9/build.xml | 0 .../pipelines}/test_pipeline/builds/9/log | 0 .../pipelines}/test_pipeline/builds/9/log-index | 0 .../pipelines}/test_pipeline/builds/9/workflow/10.xml | 0 .../pipelines}/test_pipeline/builds/9/workflow/11.xml | 0 .../pipelines}/test_pipeline/builds/9/workflow/12.xml | 0 .../pipelines}/test_pipeline/builds/9/workflow/13.xml | 0 .../pipelines}/test_pipeline/builds/9/workflow/14.xml | 0 .../pipelines}/test_pipeline/builds/9/workflow/2.xml | 0 .../pipelines}/test_pipeline/builds/9/workflow/3.xml | 0 .../pipelines}/test_pipeline/builds/9/workflow/4.xml | 0 .../pipelines}/test_pipeline/builds/9/workflow/5.xml | 0 .../pipelines}/test_pipeline/builds/9/workflow/6.xml | 0 .../pipelines}/test_pipeline/builds/9/workflow/7.xml | 0 .../pipelines}/test_pipeline/builds/9/workflow/8.xml | 0 .../pipelines}/test_pipeline/builds/9/workflow/9.xml | 0 .../pipelines}/test_pipeline/builds/legacyIds | 0 .../pipelines}/test_pipeline/builds/permalinks | 0 .../pipelines}/test_pipeline/config.xml | 0 .../pipelines}/test_pipeline/nextBuildNumber | 0 jenkins/{jenkins_setup => bootstrap}/plugins.txt | 0 jenkins/{jenkins_setup => bootstrap}/setupjenkins.sh | 0 647 files changed, 1 insertion(+), 1 deletion(-) rename jenkins/{jenkins_setup => bootstrap}/Dockerfile (88%) rename jenkins/{jenkins_setup => bootstrap}/casc.yaml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/config.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/1/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/1/changelog.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/1/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/10/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/10/changelog.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/10/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/2/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/2/changelog.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/2/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/3/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/3/changelog.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/3/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/4/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/4/changelog.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/4/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/5/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/5/changelog.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/5/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/6/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/6/changelog.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/6/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/7/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/7/changelog.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/7/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/8/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/8/changelog.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/8/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/9/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/9/changelog.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/9/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/legacyIds (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/builds/permalinks (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/config.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_freestyle/nextBuildNumber (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/1/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/1/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/1/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/10/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/10/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/10/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/11/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/11/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/11/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/12/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/12/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/12/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/13/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/13/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/13/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/2/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/2/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/2/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/3/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/3/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/3/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/4/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/4/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/4/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/5/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/5/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/5/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/6/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/6/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/6/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/7/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/7/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/7/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/8/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/8/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/8/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/9/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/9/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/9/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/legacyIds (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/builds/permalinks (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/config.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/monas_dev_work/jobs/monas_pipeline/nextBuildNumber (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/1/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/1/changelog.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/1/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/10/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/10/changelog.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/10/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/11/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/11/changelog.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/11/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/12/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/12/changelog.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/12/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/2/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/2/changelog.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/2/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/3/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/3/changelog.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/3/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/4/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/4/changelog.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/4/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/5/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/5/changelog.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/5/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/6/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/6/changelog.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/6/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/7/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/7/changelog.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/7/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/8/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/8/changelog.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/8/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/9/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/9/changelog.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/9/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/legacyIds (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/builds/permalinks (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/config.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_freestyle_project/nextBuildNumber (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/1/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/1/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/1/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/1/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/1/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/1/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/1/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/1/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/1/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/1/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/1/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/1/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/1/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/1/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/1/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/1/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/10/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/10/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/10/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/10/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/10/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/10/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/10/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/10/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/10/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/10/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/10/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/10/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/10/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/10/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/10/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/10/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/11/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/11/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/11/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/11/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/11/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/11/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/11/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/11/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/11/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/11/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/11/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/11/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/11/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/11/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/11/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/11/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/12/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/12/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/12/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/12/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/12/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/12/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/12/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/12/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/12/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/12/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/12/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/12/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/12/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/12/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/12/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/12/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/13/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/13/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/13/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/13/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/13/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/13/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/13/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/13/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/13/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/13/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/13/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/13/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/13/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/13/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/13/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/13/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/14/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/14/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/14/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/14/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/14/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/14/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/14/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/14/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/14/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/14/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/14/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/14/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/14/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/14/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/14/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/14/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/15/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/15/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/15/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/15/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/15/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/15/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/15/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/15/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/15/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/15/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/15/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/15/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/15/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/15/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/15/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/15/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/16/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/16/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/16/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/16/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/16/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/16/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/16/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/16/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/16/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/16/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/16/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/16/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/16/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/16/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/16/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/16/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/17/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/17/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/17/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/17/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/17/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/17/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/17/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/17/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/17/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/17/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/17/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/17/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/17/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/17/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/17/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/17/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/18/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/18/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/18/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/18/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/18/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/18/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/18/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/18/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/18/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/18/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/18/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/18/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/18/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/18/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/18/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/18/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/19/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/19/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/19/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/19/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/19/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/19/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/19/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/19/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/19/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/19/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/19/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/19/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/19/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/19/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/19/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/19/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/2/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/2/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/2/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/2/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/2/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/2/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/2/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/2/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/2/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/2/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/2/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/2/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/2/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/2/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/2/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/2/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/20/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/20/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/20/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/20/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/20/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/20/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/20/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/20/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/20/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/20/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/20/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/20/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/20/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/20/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/20/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/20/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/21/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/21/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/21/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/21/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/21/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/21/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/21/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/21/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/21/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/21/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/21/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/21/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/21/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/21/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/21/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/21/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/22/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/22/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/22/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/22/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/22/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/22/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/22/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/22/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/22/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/22/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/22/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/22/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/22/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/22/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/22/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/22/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/3/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/3/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/3/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/3/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/3/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/3/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/3/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/3/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/3/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/3/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/3/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/3/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/3/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/3/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/3/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/3/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/4/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/4/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/4/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/4/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/4/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/4/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/4/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/4/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/4/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/4/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/4/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/4/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/4/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/4/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/4/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/4/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/5/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/5/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/5/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/5/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/5/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/5/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/5/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/5/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/5/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/5/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/5/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/5/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/5/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/5/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/5/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/5/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/6/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/6/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/6/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/6/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/6/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/6/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/6/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/6/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/6/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/6/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/6/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/6/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/6/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/6/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/6/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/6/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/7/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/7/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/7/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/7/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/7/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/7/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/7/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/7/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/7/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/7/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/7/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/7/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/7/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/7/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/7/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/7/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/8/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/8/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/8/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/8/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/8/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/8/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/8/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/8/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/8/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/8/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/8/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/8/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/8/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/8/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/8/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/8/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/9/build.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/9/log (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/9/log-index (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/9/workflow/10.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/9/workflow/11.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/9/workflow/12.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/9/workflow/13.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/9/workflow/14.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/9/workflow/2.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/9/workflow/3.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/9/workflow/4.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/9/workflow/5.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/9/workflow/6.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/9/workflow/7.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/9/workflow/8.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/9/workflow/9.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/legacyIds (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/builds/permalinks (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/config.xml (100%) rename jenkins/{jenkins_setup/jenkins_jobs => bootstrap/pipelines}/test_pipeline/nextBuildNumber (100%) rename jenkins/{jenkins_setup => bootstrap}/plugins.txt (100%) rename jenkins/{jenkins_setup => bootstrap}/setupjenkins.sh (100%) diff --git a/jenkins/jenkins_setup/Dockerfile b/jenkins/bootstrap/Dockerfile similarity index 88% rename from jenkins/jenkins_setup/Dockerfile rename to jenkins/bootstrap/Dockerfile index 2fb9d62..66f13cd 100644 --- a/jenkins/jenkins_setup/Dockerfile +++ b/jenkins/bootstrap/Dockerfile @@ -11,4 +11,4 @@ RUN /usr/local/bin/install-plugins.sh < /usr/share/jenkins/ref/plugins.txt COPY casc.yaml /var/jenkins_home/casc.yaml # seed with jobs -COPY jenkins_jobs /usr/share/jenkins/ref/jobs +COPY pipelines /usr/share/jenkins/ref/jobs diff --git a/jenkins/jenkins_setup/casc.yaml b/jenkins/bootstrap/casc.yaml similarity index 100% rename from jenkins/jenkins_setup/casc.yaml rename to jenkins/bootstrap/casc.yaml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/config.xml b/jenkins/bootstrap/pipelines/monas_dev_work/config.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/config.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/config.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/1/build.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/1/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/1/build.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/1/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/1/changelog.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/1/changelog.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/1/changelog.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/1/changelog.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/1/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/1/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/1/log rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/1/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/10/build.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/10/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/10/build.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/10/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/10/changelog.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/10/changelog.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/10/changelog.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/10/changelog.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/10/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/10/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/10/log rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/10/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/2/build.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/2/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/2/build.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/2/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/2/changelog.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/2/changelog.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/2/changelog.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/2/changelog.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/2/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/2/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/2/log rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/2/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/3/build.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/3/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/3/build.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/3/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/3/changelog.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/3/changelog.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/3/changelog.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/3/changelog.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/3/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/3/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/3/log rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/3/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/4/build.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/4/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/4/build.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/4/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/4/changelog.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/4/changelog.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/4/changelog.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/4/changelog.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/4/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/4/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/4/log rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/4/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/5/build.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/5/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/5/build.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/5/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/5/changelog.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/5/changelog.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/5/changelog.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/5/changelog.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/5/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/5/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/5/log rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/5/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/6/build.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/6/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/6/build.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/6/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/6/changelog.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/6/changelog.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/6/changelog.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/6/changelog.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/6/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/6/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/6/log rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/6/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/7/build.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/7/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/7/build.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/7/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/7/changelog.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/7/changelog.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/7/changelog.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/7/changelog.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/7/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/7/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/7/log rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/7/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/8/build.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/8/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/8/build.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/8/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/8/changelog.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/8/changelog.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/8/changelog.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/8/changelog.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/8/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/8/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/8/log rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/8/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/9/build.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/9/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/9/build.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/9/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/9/changelog.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/9/changelog.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/9/changelog.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/9/changelog.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/9/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/9/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/9/log rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/9/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/legacyIds b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/legacyIds similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/legacyIds rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/legacyIds diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/permalinks b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/permalinks similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/builds/permalinks rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/permalinks diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/config.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/config.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/config.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/config.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/nextBuildNumber b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/nextBuildNumber similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_freestyle/nextBuildNumber rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/nextBuildNumber diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/build.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/build.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/log rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/log-index b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/log-index rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/10.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/10.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/11.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/11.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/12.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/12.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/13.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/13.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/14.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/14.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/2.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/2.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/3.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/3.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/4.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/4.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/5.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/5.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/6.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/6.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/7.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/7.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/8.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/8.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/9.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/9.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/build.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/build.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/log rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/log-index b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/log-index rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/10.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/10.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/11.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/11.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/12.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/12.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/13.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/13.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/14.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/14.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/2.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/2.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/3.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/3.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/4.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/4.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/5.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/5.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/6.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/6.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/7.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/7.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/8.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/8.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/9.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/9.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/build.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/build.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/log rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/log-index b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/log-index rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/10.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/10.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/11.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/11.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/12.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/12.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/13.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/13.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/14.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/14.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/2.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/2.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/3.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/3.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/4.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/4.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/5.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/5.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/6.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/6.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/7.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/7.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/8.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/8.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/9.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/9.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/build.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/build.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/log rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/log-index b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/log-index rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/10.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/10.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/11.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/11.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/12.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/12.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/13.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/13.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/14.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/14.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/2.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/2.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/3.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/3.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/4.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/4.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/5.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/5.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/6.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/6.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/7.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/7.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/8.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/8.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/9.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/9.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/build.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/build.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/log rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/log-index b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/log-index rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/10.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/10.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/11.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/11.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/12.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/12.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/13.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/13.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/14.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/14.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/2.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/2.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/3.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/3.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/4.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/4.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/5.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/5.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/6.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/6.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/7.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/7.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/8.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/8.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/9.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/9.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/build.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/build.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/log rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/log-index b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/log-index rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/10.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/10.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/11.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/11.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/12.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/12.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/13.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/13.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/14.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/14.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/2.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/2.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/3.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/3.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/4.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/4.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/5.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/5.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/6.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/6.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/7.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/7.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/8.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/8.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/9.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/9.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/build.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/build.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/log rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/log-index b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/log-index rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/10.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/10.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/11.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/11.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/12.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/12.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/13.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/13.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/14.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/14.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/2.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/2.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/3.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/3.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/4.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/4.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/5.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/5.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/6.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/6.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/7.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/7.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/8.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/8.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/9.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/9.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/build.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/build.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/log rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/log-index b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/log-index rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/10.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/10.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/11.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/11.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/12.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/12.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/13.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/13.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/14.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/14.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/2.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/2.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/3.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/3.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/4.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/4.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/5.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/5.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/6.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/6.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/7.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/7.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/8.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/8.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/9.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/9.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/build.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/build.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/log rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/log-index b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/log-index rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/10.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/10.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/11.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/11.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/12.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/12.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/13.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/13.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/14.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/14.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/2.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/2.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/3.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/3.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/4.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/4.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/5.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/5.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/6.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/6.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/7.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/7.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/8.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/8.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/9.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/9.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/build.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/build.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/log rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/log-index b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/log-index rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/10.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/10.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/11.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/11.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/12.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/12.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/13.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/13.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/14.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/14.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/2.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/2.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/3.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/3.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/4.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/4.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/5.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/5.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/6.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/6.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/7.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/7.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/8.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/8.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/9.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/9.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/build.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/build.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/log rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/log-index b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/log-index rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/10.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/10.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/11.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/11.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/12.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/12.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/13.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/13.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/14.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/14.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/2.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/2.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/3.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/3.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/4.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/4.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/5.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/5.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/6.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/6.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/7.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/7.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/8.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/8.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/9.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/9.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/build.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/build.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/log rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/log-index b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/log-index rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/10.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/10.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/11.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/11.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/12.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/12.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/13.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/13.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/14.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/14.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/2.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/2.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/3.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/3.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/4.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/4.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/5.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/5.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/6.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/6.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/7.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/7.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/8.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/8.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/9.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/9.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/build.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/build.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/log rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/log-index b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/log-index rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/10.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/10.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/11.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/11.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/12.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/12.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/13.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/13.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/14.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/14.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/2.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/2.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/3.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/3.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/4.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/4.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/5.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/5.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/6.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/6.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/7.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/7.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/8.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/8.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/9.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/9.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/legacyIds b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/legacyIds similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/legacyIds rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/legacyIds diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/permalinks b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/permalinks similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/builds/permalinks rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/permalinks diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/config.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/config.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/config.xml rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/config.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/nextBuildNumber b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/nextBuildNumber similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/monas_dev_work/jobs/monas_pipeline/nextBuildNumber rename to jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/nextBuildNumber diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/1/build.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/1/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/1/build.xml rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/1/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/1/changelog.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/1/changelog.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/1/changelog.xml rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/1/changelog.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/1/log b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/1/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/1/log rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/1/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/10/build.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/10/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/10/build.xml rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/10/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/10/changelog.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/10/changelog.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/10/changelog.xml rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/10/changelog.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/10/log b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/10/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/10/log rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/10/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/11/build.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/11/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/11/build.xml rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/11/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/11/changelog.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/11/changelog.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/11/changelog.xml rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/11/changelog.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/11/log b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/11/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/11/log rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/11/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/12/build.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/12/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/12/build.xml rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/12/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/12/changelog.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/12/changelog.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/12/changelog.xml rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/12/changelog.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/12/log b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/12/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/12/log rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/12/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/2/build.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/2/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/2/build.xml rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/2/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/2/changelog.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/2/changelog.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/2/changelog.xml rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/2/changelog.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/2/log b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/2/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/2/log rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/2/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/3/build.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/3/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/3/build.xml rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/3/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/3/changelog.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/3/changelog.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/3/changelog.xml rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/3/changelog.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/3/log b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/3/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/3/log rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/3/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/4/build.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/4/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/4/build.xml rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/4/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/4/changelog.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/4/changelog.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/4/changelog.xml rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/4/changelog.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/4/log b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/4/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/4/log rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/4/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/5/build.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/5/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/5/build.xml rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/5/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/5/changelog.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/5/changelog.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/5/changelog.xml rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/5/changelog.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/5/log b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/5/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/5/log rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/5/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/6/build.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/6/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/6/build.xml rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/6/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/6/changelog.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/6/changelog.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/6/changelog.xml rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/6/changelog.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/6/log b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/6/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/6/log rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/6/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/7/build.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/7/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/7/build.xml rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/7/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/7/changelog.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/7/changelog.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/7/changelog.xml rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/7/changelog.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/7/log b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/7/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/7/log rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/7/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/8/build.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/8/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/8/build.xml rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/8/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/8/changelog.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/8/changelog.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/8/changelog.xml rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/8/changelog.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/8/log b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/8/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/8/log rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/8/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/9/build.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/9/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/9/build.xml rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/9/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/9/changelog.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/9/changelog.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/9/changelog.xml rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/9/changelog.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/9/log b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/9/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/9/log rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/9/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/legacyIds b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/legacyIds similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/legacyIds rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/legacyIds diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/permalinks b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/permalinks similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/builds/permalinks rename to jenkins/bootstrap/pipelines/test_freestyle_project/builds/permalinks diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/config.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/config.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/config.xml rename to jenkins/bootstrap/pipelines/test_freestyle_project/config.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/nextBuildNumber b/jenkins/bootstrap/pipelines/test_freestyle_project/nextBuildNumber similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_freestyle_project/nextBuildNumber rename to jenkins/bootstrap/pipelines/test_freestyle_project/nextBuildNumber diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/build.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/1/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/build.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/1/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/1/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/log rename to jenkins/bootstrap/pipelines/test_pipeline/builds/1/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/log-index b/jenkins/bootstrap/pipelines/test_pipeline/builds/1/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/log-index rename to jenkins/bootstrap/pipelines/test_pipeline/builds/1/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/workflow/10.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/1/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/workflow/10.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/1/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/workflow/11.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/1/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/workflow/11.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/1/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/workflow/12.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/1/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/workflow/12.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/1/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/workflow/13.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/1/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/workflow/13.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/1/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/workflow/14.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/1/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/workflow/14.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/1/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/workflow/2.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/1/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/workflow/2.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/1/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/workflow/3.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/1/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/workflow/3.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/1/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/workflow/4.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/1/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/workflow/4.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/1/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/workflow/5.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/1/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/workflow/5.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/1/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/workflow/6.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/1/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/workflow/6.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/1/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/workflow/7.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/1/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/workflow/7.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/1/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/workflow/8.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/1/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/workflow/8.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/1/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/workflow/9.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/1/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/1/workflow/9.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/1/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/build.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/10/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/build.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/10/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/10/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/log rename to jenkins/bootstrap/pipelines/test_pipeline/builds/10/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/log-index b/jenkins/bootstrap/pipelines/test_pipeline/builds/10/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/log-index rename to jenkins/bootstrap/pipelines/test_pipeline/builds/10/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/workflow/10.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/10/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/workflow/10.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/10/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/workflow/11.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/10/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/workflow/11.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/10/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/workflow/12.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/10/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/workflow/12.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/10/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/workflow/13.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/10/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/workflow/13.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/10/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/workflow/14.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/10/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/workflow/14.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/10/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/workflow/2.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/10/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/workflow/2.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/10/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/workflow/3.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/10/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/workflow/3.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/10/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/workflow/4.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/10/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/workflow/4.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/10/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/workflow/5.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/10/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/workflow/5.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/10/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/workflow/6.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/10/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/workflow/6.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/10/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/workflow/7.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/10/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/workflow/7.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/10/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/workflow/8.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/10/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/workflow/8.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/10/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/workflow/9.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/10/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/10/workflow/9.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/10/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/build.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/11/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/build.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/11/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/11/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/log rename to jenkins/bootstrap/pipelines/test_pipeline/builds/11/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/log-index b/jenkins/bootstrap/pipelines/test_pipeline/builds/11/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/log-index rename to jenkins/bootstrap/pipelines/test_pipeline/builds/11/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/workflow/10.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/11/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/workflow/10.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/11/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/workflow/11.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/11/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/workflow/11.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/11/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/workflow/12.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/11/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/workflow/12.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/11/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/workflow/13.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/11/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/workflow/13.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/11/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/workflow/14.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/11/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/workflow/14.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/11/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/workflow/2.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/11/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/workflow/2.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/11/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/workflow/3.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/11/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/workflow/3.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/11/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/workflow/4.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/11/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/workflow/4.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/11/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/workflow/5.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/11/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/workflow/5.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/11/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/workflow/6.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/11/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/workflow/6.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/11/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/workflow/7.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/11/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/workflow/7.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/11/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/workflow/8.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/11/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/workflow/8.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/11/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/workflow/9.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/11/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/11/workflow/9.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/11/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/build.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/12/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/build.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/12/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/12/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/log rename to jenkins/bootstrap/pipelines/test_pipeline/builds/12/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/log-index b/jenkins/bootstrap/pipelines/test_pipeline/builds/12/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/log-index rename to jenkins/bootstrap/pipelines/test_pipeline/builds/12/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/workflow/10.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/12/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/workflow/10.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/12/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/workflow/11.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/12/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/workflow/11.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/12/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/workflow/12.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/12/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/workflow/12.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/12/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/workflow/13.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/12/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/workflow/13.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/12/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/workflow/14.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/12/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/workflow/14.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/12/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/workflow/2.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/12/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/workflow/2.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/12/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/workflow/3.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/12/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/workflow/3.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/12/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/workflow/4.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/12/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/workflow/4.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/12/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/workflow/5.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/12/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/workflow/5.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/12/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/workflow/6.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/12/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/workflow/6.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/12/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/workflow/7.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/12/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/workflow/7.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/12/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/workflow/8.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/12/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/workflow/8.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/12/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/workflow/9.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/12/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/12/workflow/9.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/12/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/build.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/13/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/build.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/13/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/13/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/log rename to jenkins/bootstrap/pipelines/test_pipeline/builds/13/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/log-index b/jenkins/bootstrap/pipelines/test_pipeline/builds/13/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/log-index rename to jenkins/bootstrap/pipelines/test_pipeline/builds/13/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/workflow/10.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/13/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/workflow/10.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/13/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/workflow/11.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/13/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/workflow/11.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/13/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/workflow/12.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/13/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/workflow/12.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/13/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/workflow/13.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/13/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/workflow/13.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/13/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/workflow/14.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/13/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/workflow/14.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/13/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/workflow/2.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/13/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/workflow/2.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/13/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/workflow/3.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/13/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/workflow/3.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/13/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/workflow/4.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/13/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/workflow/4.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/13/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/workflow/5.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/13/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/workflow/5.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/13/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/workflow/6.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/13/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/workflow/6.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/13/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/workflow/7.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/13/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/workflow/7.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/13/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/workflow/8.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/13/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/workflow/8.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/13/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/workflow/9.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/13/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/13/workflow/9.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/13/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/build.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/14/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/build.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/14/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/14/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/log rename to jenkins/bootstrap/pipelines/test_pipeline/builds/14/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/log-index b/jenkins/bootstrap/pipelines/test_pipeline/builds/14/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/log-index rename to jenkins/bootstrap/pipelines/test_pipeline/builds/14/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/workflow/10.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/14/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/workflow/10.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/14/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/workflow/11.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/14/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/workflow/11.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/14/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/workflow/12.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/14/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/workflow/12.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/14/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/workflow/13.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/14/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/workflow/13.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/14/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/workflow/14.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/14/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/workflow/14.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/14/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/workflow/2.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/14/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/workflow/2.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/14/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/workflow/3.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/14/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/workflow/3.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/14/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/workflow/4.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/14/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/workflow/4.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/14/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/workflow/5.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/14/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/workflow/5.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/14/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/workflow/6.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/14/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/workflow/6.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/14/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/workflow/7.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/14/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/workflow/7.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/14/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/workflow/8.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/14/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/workflow/8.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/14/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/workflow/9.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/14/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/14/workflow/9.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/14/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/build.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/15/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/build.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/15/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/15/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/log rename to jenkins/bootstrap/pipelines/test_pipeline/builds/15/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/log-index b/jenkins/bootstrap/pipelines/test_pipeline/builds/15/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/log-index rename to jenkins/bootstrap/pipelines/test_pipeline/builds/15/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/workflow/10.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/15/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/workflow/10.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/15/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/workflow/11.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/15/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/workflow/11.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/15/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/workflow/12.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/15/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/workflow/12.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/15/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/workflow/13.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/15/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/workflow/13.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/15/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/workflow/14.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/15/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/workflow/14.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/15/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/workflow/2.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/15/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/workflow/2.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/15/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/workflow/3.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/15/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/workflow/3.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/15/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/workflow/4.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/15/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/workflow/4.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/15/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/workflow/5.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/15/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/workflow/5.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/15/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/workflow/6.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/15/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/workflow/6.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/15/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/workflow/7.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/15/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/workflow/7.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/15/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/workflow/8.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/15/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/workflow/8.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/15/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/workflow/9.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/15/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/15/workflow/9.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/15/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/build.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/16/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/build.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/16/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/16/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/log rename to jenkins/bootstrap/pipelines/test_pipeline/builds/16/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/log-index b/jenkins/bootstrap/pipelines/test_pipeline/builds/16/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/log-index rename to jenkins/bootstrap/pipelines/test_pipeline/builds/16/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/workflow/10.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/16/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/workflow/10.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/16/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/workflow/11.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/16/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/workflow/11.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/16/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/workflow/12.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/16/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/workflow/12.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/16/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/workflow/13.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/16/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/workflow/13.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/16/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/workflow/14.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/16/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/workflow/14.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/16/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/workflow/2.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/16/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/workflow/2.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/16/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/workflow/3.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/16/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/workflow/3.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/16/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/workflow/4.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/16/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/workflow/4.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/16/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/workflow/5.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/16/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/workflow/5.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/16/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/workflow/6.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/16/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/workflow/6.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/16/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/workflow/7.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/16/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/workflow/7.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/16/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/workflow/8.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/16/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/workflow/8.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/16/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/workflow/9.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/16/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/16/workflow/9.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/16/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/build.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/17/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/build.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/17/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/17/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/log rename to jenkins/bootstrap/pipelines/test_pipeline/builds/17/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/log-index b/jenkins/bootstrap/pipelines/test_pipeline/builds/17/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/log-index rename to jenkins/bootstrap/pipelines/test_pipeline/builds/17/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/workflow/10.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/17/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/workflow/10.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/17/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/workflow/11.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/17/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/workflow/11.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/17/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/workflow/12.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/17/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/workflow/12.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/17/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/workflow/13.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/17/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/workflow/13.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/17/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/workflow/14.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/17/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/workflow/14.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/17/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/workflow/2.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/17/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/workflow/2.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/17/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/workflow/3.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/17/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/workflow/3.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/17/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/workflow/4.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/17/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/workflow/4.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/17/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/workflow/5.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/17/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/workflow/5.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/17/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/workflow/6.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/17/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/workflow/6.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/17/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/workflow/7.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/17/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/workflow/7.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/17/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/workflow/8.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/17/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/workflow/8.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/17/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/workflow/9.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/17/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/17/workflow/9.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/17/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/build.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/18/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/build.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/18/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/18/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/log rename to jenkins/bootstrap/pipelines/test_pipeline/builds/18/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/log-index b/jenkins/bootstrap/pipelines/test_pipeline/builds/18/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/log-index rename to jenkins/bootstrap/pipelines/test_pipeline/builds/18/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/workflow/10.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/18/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/workflow/10.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/18/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/workflow/11.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/18/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/workflow/11.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/18/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/workflow/12.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/18/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/workflow/12.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/18/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/workflow/13.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/18/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/workflow/13.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/18/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/workflow/14.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/18/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/workflow/14.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/18/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/workflow/2.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/18/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/workflow/2.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/18/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/workflow/3.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/18/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/workflow/3.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/18/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/workflow/4.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/18/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/workflow/4.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/18/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/workflow/5.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/18/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/workflow/5.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/18/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/workflow/6.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/18/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/workflow/6.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/18/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/workflow/7.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/18/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/workflow/7.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/18/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/workflow/8.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/18/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/workflow/8.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/18/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/workflow/9.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/18/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/18/workflow/9.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/18/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/build.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/19/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/build.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/19/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/19/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/log rename to jenkins/bootstrap/pipelines/test_pipeline/builds/19/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/log-index b/jenkins/bootstrap/pipelines/test_pipeline/builds/19/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/log-index rename to jenkins/bootstrap/pipelines/test_pipeline/builds/19/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/workflow/10.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/19/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/workflow/10.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/19/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/workflow/11.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/19/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/workflow/11.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/19/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/workflow/12.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/19/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/workflow/12.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/19/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/workflow/13.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/19/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/workflow/13.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/19/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/workflow/14.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/19/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/workflow/14.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/19/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/workflow/2.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/19/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/workflow/2.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/19/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/workflow/3.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/19/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/workflow/3.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/19/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/workflow/4.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/19/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/workflow/4.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/19/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/workflow/5.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/19/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/workflow/5.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/19/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/workflow/6.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/19/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/workflow/6.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/19/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/workflow/7.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/19/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/workflow/7.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/19/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/workflow/8.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/19/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/workflow/8.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/19/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/workflow/9.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/19/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/19/workflow/9.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/19/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/build.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/2/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/build.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/2/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/2/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/log rename to jenkins/bootstrap/pipelines/test_pipeline/builds/2/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/log-index b/jenkins/bootstrap/pipelines/test_pipeline/builds/2/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/log-index rename to jenkins/bootstrap/pipelines/test_pipeline/builds/2/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/workflow/10.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/2/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/workflow/10.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/2/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/workflow/11.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/2/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/workflow/11.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/2/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/workflow/12.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/2/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/workflow/12.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/2/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/workflow/13.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/2/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/workflow/13.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/2/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/workflow/14.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/2/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/workflow/14.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/2/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/workflow/2.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/2/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/workflow/2.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/2/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/workflow/3.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/2/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/workflow/3.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/2/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/workflow/4.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/2/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/workflow/4.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/2/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/workflow/5.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/2/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/workflow/5.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/2/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/workflow/6.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/2/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/workflow/6.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/2/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/workflow/7.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/2/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/workflow/7.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/2/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/workflow/8.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/2/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/workflow/8.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/2/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/workflow/9.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/2/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/2/workflow/9.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/2/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/build.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/20/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/build.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/20/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/20/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/log rename to jenkins/bootstrap/pipelines/test_pipeline/builds/20/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/log-index b/jenkins/bootstrap/pipelines/test_pipeline/builds/20/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/log-index rename to jenkins/bootstrap/pipelines/test_pipeline/builds/20/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/workflow/10.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/20/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/workflow/10.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/20/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/workflow/11.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/20/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/workflow/11.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/20/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/workflow/12.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/20/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/workflow/12.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/20/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/workflow/13.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/20/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/workflow/13.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/20/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/workflow/14.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/20/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/workflow/14.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/20/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/workflow/2.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/20/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/workflow/2.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/20/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/workflow/3.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/20/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/workflow/3.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/20/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/workflow/4.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/20/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/workflow/4.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/20/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/workflow/5.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/20/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/workflow/5.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/20/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/workflow/6.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/20/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/workflow/6.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/20/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/workflow/7.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/20/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/workflow/7.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/20/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/workflow/8.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/20/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/workflow/8.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/20/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/workflow/9.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/20/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/20/workflow/9.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/20/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/build.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/21/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/build.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/21/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/21/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/log rename to jenkins/bootstrap/pipelines/test_pipeline/builds/21/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/log-index b/jenkins/bootstrap/pipelines/test_pipeline/builds/21/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/log-index rename to jenkins/bootstrap/pipelines/test_pipeline/builds/21/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/workflow/10.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/21/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/workflow/10.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/21/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/workflow/11.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/21/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/workflow/11.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/21/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/workflow/12.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/21/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/workflow/12.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/21/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/workflow/13.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/21/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/workflow/13.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/21/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/workflow/14.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/21/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/workflow/14.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/21/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/workflow/2.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/21/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/workflow/2.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/21/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/workflow/3.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/21/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/workflow/3.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/21/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/workflow/4.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/21/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/workflow/4.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/21/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/workflow/5.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/21/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/workflow/5.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/21/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/workflow/6.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/21/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/workflow/6.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/21/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/workflow/7.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/21/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/workflow/7.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/21/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/workflow/8.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/21/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/workflow/8.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/21/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/workflow/9.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/21/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/21/workflow/9.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/21/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/build.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/22/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/build.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/22/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/22/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/log rename to jenkins/bootstrap/pipelines/test_pipeline/builds/22/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/log-index b/jenkins/bootstrap/pipelines/test_pipeline/builds/22/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/log-index rename to jenkins/bootstrap/pipelines/test_pipeline/builds/22/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/workflow/10.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/22/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/workflow/10.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/22/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/workflow/11.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/22/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/workflow/11.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/22/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/workflow/12.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/22/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/workflow/12.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/22/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/workflow/13.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/22/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/workflow/13.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/22/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/workflow/14.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/22/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/workflow/14.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/22/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/workflow/2.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/22/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/workflow/2.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/22/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/workflow/3.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/22/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/workflow/3.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/22/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/workflow/4.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/22/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/workflow/4.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/22/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/workflow/5.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/22/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/workflow/5.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/22/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/workflow/6.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/22/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/workflow/6.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/22/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/workflow/7.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/22/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/workflow/7.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/22/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/workflow/8.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/22/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/workflow/8.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/22/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/workflow/9.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/22/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/22/workflow/9.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/22/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/build.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/3/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/build.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/3/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/3/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/log rename to jenkins/bootstrap/pipelines/test_pipeline/builds/3/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/log-index b/jenkins/bootstrap/pipelines/test_pipeline/builds/3/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/log-index rename to jenkins/bootstrap/pipelines/test_pipeline/builds/3/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/workflow/10.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/3/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/workflow/10.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/3/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/workflow/11.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/3/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/workflow/11.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/3/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/workflow/12.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/3/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/workflow/12.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/3/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/workflow/13.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/3/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/workflow/13.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/3/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/workflow/14.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/3/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/workflow/14.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/3/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/workflow/2.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/3/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/workflow/2.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/3/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/workflow/3.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/3/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/workflow/3.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/3/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/workflow/4.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/3/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/workflow/4.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/3/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/workflow/5.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/3/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/workflow/5.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/3/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/workflow/6.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/3/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/workflow/6.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/3/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/workflow/7.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/3/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/workflow/7.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/3/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/workflow/8.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/3/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/workflow/8.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/3/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/workflow/9.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/3/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/3/workflow/9.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/3/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/build.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/4/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/build.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/4/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/4/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/log rename to jenkins/bootstrap/pipelines/test_pipeline/builds/4/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/log-index b/jenkins/bootstrap/pipelines/test_pipeline/builds/4/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/log-index rename to jenkins/bootstrap/pipelines/test_pipeline/builds/4/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/workflow/10.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/4/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/workflow/10.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/4/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/workflow/11.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/4/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/workflow/11.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/4/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/workflow/12.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/4/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/workflow/12.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/4/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/workflow/13.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/4/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/workflow/13.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/4/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/workflow/14.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/4/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/workflow/14.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/4/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/workflow/2.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/4/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/workflow/2.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/4/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/workflow/3.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/4/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/workflow/3.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/4/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/workflow/4.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/4/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/workflow/4.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/4/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/workflow/5.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/4/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/workflow/5.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/4/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/workflow/6.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/4/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/workflow/6.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/4/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/workflow/7.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/4/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/workflow/7.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/4/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/workflow/8.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/4/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/workflow/8.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/4/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/workflow/9.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/4/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/4/workflow/9.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/4/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/build.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/5/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/build.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/5/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/5/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/log rename to jenkins/bootstrap/pipelines/test_pipeline/builds/5/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/log-index b/jenkins/bootstrap/pipelines/test_pipeline/builds/5/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/log-index rename to jenkins/bootstrap/pipelines/test_pipeline/builds/5/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/workflow/10.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/5/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/workflow/10.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/5/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/workflow/11.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/5/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/workflow/11.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/5/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/workflow/12.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/5/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/workflow/12.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/5/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/workflow/13.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/5/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/workflow/13.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/5/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/workflow/14.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/5/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/workflow/14.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/5/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/workflow/2.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/5/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/workflow/2.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/5/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/workflow/3.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/5/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/workflow/3.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/5/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/workflow/4.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/5/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/workflow/4.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/5/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/workflow/5.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/5/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/workflow/5.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/5/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/workflow/6.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/5/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/workflow/6.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/5/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/workflow/7.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/5/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/workflow/7.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/5/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/workflow/8.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/5/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/workflow/8.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/5/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/workflow/9.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/5/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/5/workflow/9.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/5/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/build.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/6/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/build.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/6/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/6/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/log rename to jenkins/bootstrap/pipelines/test_pipeline/builds/6/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/log-index b/jenkins/bootstrap/pipelines/test_pipeline/builds/6/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/log-index rename to jenkins/bootstrap/pipelines/test_pipeline/builds/6/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/workflow/10.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/6/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/workflow/10.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/6/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/workflow/11.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/6/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/workflow/11.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/6/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/workflow/12.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/6/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/workflow/12.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/6/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/workflow/13.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/6/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/workflow/13.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/6/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/workflow/14.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/6/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/workflow/14.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/6/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/workflow/2.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/6/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/workflow/2.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/6/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/workflow/3.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/6/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/workflow/3.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/6/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/workflow/4.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/6/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/workflow/4.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/6/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/workflow/5.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/6/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/workflow/5.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/6/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/workflow/6.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/6/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/workflow/6.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/6/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/workflow/7.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/6/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/workflow/7.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/6/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/workflow/8.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/6/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/workflow/8.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/6/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/workflow/9.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/6/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/6/workflow/9.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/6/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/build.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/7/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/build.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/7/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/7/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/log rename to jenkins/bootstrap/pipelines/test_pipeline/builds/7/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/log-index b/jenkins/bootstrap/pipelines/test_pipeline/builds/7/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/log-index rename to jenkins/bootstrap/pipelines/test_pipeline/builds/7/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/workflow/10.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/7/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/workflow/10.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/7/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/workflow/11.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/7/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/workflow/11.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/7/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/workflow/12.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/7/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/workflow/12.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/7/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/workflow/13.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/7/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/workflow/13.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/7/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/workflow/14.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/7/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/workflow/14.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/7/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/workflow/2.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/7/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/workflow/2.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/7/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/workflow/3.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/7/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/workflow/3.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/7/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/workflow/4.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/7/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/workflow/4.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/7/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/workflow/5.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/7/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/workflow/5.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/7/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/workflow/6.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/7/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/workflow/6.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/7/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/workflow/7.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/7/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/workflow/7.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/7/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/workflow/8.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/7/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/workflow/8.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/7/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/workflow/9.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/7/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/7/workflow/9.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/7/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/build.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/8/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/build.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/8/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/8/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/log rename to jenkins/bootstrap/pipelines/test_pipeline/builds/8/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/log-index b/jenkins/bootstrap/pipelines/test_pipeline/builds/8/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/log-index rename to jenkins/bootstrap/pipelines/test_pipeline/builds/8/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/workflow/10.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/8/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/workflow/10.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/8/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/workflow/11.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/8/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/workflow/11.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/8/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/workflow/12.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/8/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/workflow/12.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/8/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/workflow/13.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/8/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/workflow/13.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/8/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/workflow/14.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/8/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/workflow/14.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/8/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/workflow/2.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/8/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/workflow/2.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/8/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/workflow/3.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/8/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/workflow/3.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/8/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/workflow/4.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/8/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/workflow/4.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/8/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/workflow/5.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/8/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/workflow/5.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/8/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/workflow/6.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/8/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/workflow/6.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/8/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/workflow/7.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/8/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/workflow/7.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/8/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/workflow/8.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/8/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/workflow/8.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/8/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/workflow/9.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/8/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/8/workflow/9.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/8/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/build.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/9/build.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/build.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/9/build.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/9/log similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/log rename to jenkins/bootstrap/pipelines/test_pipeline/builds/9/log diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/log-index b/jenkins/bootstrap/pipelines/test_pipeline/builds/9/log-index similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/log-index rename to jenkins/bootstrap/pipelines/test_pipeline/builds/9/log-index diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/workflow/10.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/9/workflow/10.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/workflow/10.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/9/workflow/10.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/workflow/11.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/9/workflow/11.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/workflow/11.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/9/workflow/11.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/workflow/12.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/9/workflow/12.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/workflow/12.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/9/workflow/12.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/workflow/13.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/9/workflow/13.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/workflow/13.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/9/workflow/13.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/workflow/14.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/9/workflow/14.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/workflow/14.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/9/workflow/14.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/workflow/2.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/9/workflow/2.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/workflow/2.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/9/workflow/2.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/workflow/3.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/9/workflow/3.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/workflow/3.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/9/workflow/3.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/workflow/4.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/9/workflow/4.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/workflow/4.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/9/workflow/4.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/workflow/5.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/9/workflow/5.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/workflow/5.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/9/workflow/5.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/workflow/6.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/9/workflow/6.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/workflow/6.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/9/workflow/6.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/workflow/7.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/9/workflow/7.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/workflow/7.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/9/workflow/7.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/workflow/8.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/9/workflow/8.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/workflow/8.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/9/workflow/8.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/workflow/9.xml b/jenkins/bootstrap/pipelines/test_pipeline/builds/9/workflow/9.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/9/workflow/9.xml rename to jenkins/bootstrap/pipelines/test_pipeline/builds/9/workflow/9.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/legacyIds b/jenkins/bootstrap/pipelines/test_pipeline/builds/legacyIds similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/legacyIds rename to jenkins/bootstrap/pipelines/test_pipeline/builds/legacyIds diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/permalinks b/jenkins/bootstrap/pipelines/test_pipeline/builds/permalinks similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/builds/permalinks rename to jenkins/bootstrap/pipelines/test_pipeline/builds/permalinks diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/config.xml b/jenkins/bootstrap/pipelines/test_pipeline/config.xml similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/config.xml rename to jenkins/bootstrap/pipelines/test_pipeline/config.xml diff --git a/jenkins/jenkins_setup/jenkins_jobs/test_pipeline/nextBuildNumber b/jenkins/bootstrap/pipelines/test_pipeline/nextBuildNumber similarity index 100% rename from jenkins/jenkins_setup/jenkins_jobs/test_pipeline/nextBuildNumber rename to jenkins/bootstrap/pipelines/test_pipeline/nextBuildNumber diff --git a/jenkins/jenkins_setup/plugins.txt b/jenkins/bootstrap/plugins.txt similarity index 100% rename from jenkins/jenkins_setup/plugins.txt rename to jenkins/bootstrap/plugins.txt diff --git a/jenkins/jenkins_setup/setupjenkins.sh b/jenkins/bootstrap/setupjenkins.sh similarity index 100% rename from jenkins/jenkins_setup/setupjenkins.sh rename to jenkins/bootstrap/setupjenkins.sh From 7a39fce1ffff1c1b2822255b4f08ed03ecfecff0 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Mon, 8 Aug 2022 16:06:57 -0700 Subject: [PATCH 16/59] Update jenkins/bootstrap/setupjenkins.sh Co-authored-by: Ethan Dennis --- jenkins/bootstrap/setupjenkins.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/bootstrap/setupjenkins.sh b/jenkins/bootstrap/setupjenkins.sh index 577cbb6..4b9d90c 100644 --- a/jenkins/bootstrap/setupjenkins.sh +++ b/jenkins/bootstrap/setupjenkins.sh @@ -13,4 +13,4 @@ docker build -t jenkins:$container_name . sleep 2 # Build container -docker run --name jenkins -p 8080:8080 --env JENKINS_ADMIN_ID=$username --env JENKINS_ADMIN_PASSWORD=$password jenkins:$container_name +docker run -d --name jenkins -p 8080:8080 --env JENKINS_ADMIN_ID=$username --env JENKINS_ADMIN_PASSWORD=$password jenkins:$container_name From 517714bcce7d44d58bf83aec889a51fa2fc7c61b Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Mon, 8 Aug 2022 16:34:16 -0700 Subject: [PATCH 17/59] change and commit file permissions for this file to be executable --- jenkins/bootstrap/setupjenkins.sh | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/jenkins/bootstrap/setupjenkins.sh b/jenkins/bootstrap/setupjenkins.sh index 4b9d90c..5c2e2fc 100644 --- a/jenkins/bootstrap/setupjenkins.sh +++ b/jenkins/bootstrap/setupjenkins.sh @@ -1,4 +1,4 @@ -#!/usr/bin/env bash +#!/bin/bash container_name="valet" username="admin" @@ -9,8 +9,5 @@ echo "Building Jenkins instance!" # Build jenkins image from docker compose file docker build -t jenkins:$container_name . -# wait until docker image is ready -sleep 2 - # Build container docker run -d --name jenkins -p 8080:8080 --env JENKINS_ADMIN_ID=$username --env JENKINS_ADMIN_PASSWORD=$password jenkins:$container_name From 2bb604c39b68c30f3264e02bc57519ac62b7e7b0 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Mon, 8 Aug 2022 16:45:18 -0700 Subject: [PATCH 18/59] Remove the logs --- .../monas_freestyle/builds/1/changelog.xml | 1 - .../jobs/monas_freestyle/builds/1/log | 14 ----------- .../monas_freestyle/builds/10/changelog.xml | 1 - .../jobs/monas_freestyle/builds/10/log | 10 -------- .../monas_freestyle/builds/2/changelog.xml | 1 - .../jobs/monas_freestyle/builds/2/log | 22 ------------------ .../monas_freestyle/builds/3/changelog.xml | 1 - .../jobs/monas_freestyle/builds/3/log | 10 -------- .../monas_freestyle/builds/4/changelog.xml | 1 - .../jobs/monas_freestyle/builds/4/log | 21 ----------------- .../monas_freestyle/builds/5/changelog.xml | 1 - .../jobs/monas_freestyle/builds/5/log | 18 --------------- .../monas_freestyle/builds/6/changelog.xml | 1 - .../jobs/monas_freestyle/builds/6/log | 10 -------- .../monas_freestyle/builds/7/changelog.xml | 1 - .../jobs/monas_freestyle/builds/7/log | 13 ----------- .../monas_freestyle/builds/8/changelog.xml | 1 - .../jobs/monas_freestyle/builds/8/log | 13 ----------- .../monas_freestyle/builds/9/changelog.xml | 1 - .../jobs/monas_freestyle/builds/9/log | 12 ---------- .../jobs/monas_pipeline/builds/1/log | 21 ----------------- .../jobs/monas_pipeline/builds/10/log | 21 ----------------- .../jobs/monas_pipeline/builds/11/log | 21 ----------------- .../jobs/monas_pipeline/builds/12/log | 21 ----------------- .../jobs/monas_pipeline/builds/13/log | 21 ----------------- .../jobs/monas_pipeline/builds/2/log | 21 ----------------- .../jobs/monas_pipeline/builds/3/log | 21 ----------------- .../jobs/monas_pipeline/builds/4/log | 21 ----------------- .../jobs/monas_pipeline/builds/5/log | 21 ----------------- .../jobs/monas_pipeline/builds/6/log | 21 ----------------- .../jobs/monas_pipeline/builds/7/log | 21 ----------------- .../jobs/monas_pipeline/builds/8/log | 21 ----------------- .../jobs/monas_pipeline/builds/9/log | 21 ----------------- .../builds/1/changelog.xml | 1 - .../test_freestyle_project/builds/1/log | 7 ------ .../builds/10/changelog.xml | 1 - .../test_freestyle_project/builds/10/log | 11 --------- .../builds/11/changelog.xml | 1 - .../test_freestyle_project/builds/11/log | 23 ------------------- .../builds/12/changelog.xml | 1 - .../test_freestyle_project/builds/12/log | 11 --------- .../builds/2/changelog.xml | 1 - .../test_freestyle_project/builds/2/log | 7 ------ .../builds/3/changelog.xml | 1 - .../test_freestyle_project/builds/3/log | 7 ------ .../builds/4/changelog.xml | 1 - .../test_freestyle_project/builds/4/log | 7 ------ .../builds/5/changelog.xml | 1 - .../test_freestyle_project/builds/5/log | 7 ------ .../builds/6/changelog.xml | 1 - .../test_freestyle_project/builds/6/log | 7 ------ .../builds/7/changelog.xml | 1 - .../test_freestyle_project/builds/7/log | 7 ------ .../builds/8/changelog.xml | 1 - .../test_freestyle_project/builds/8/log | 10 -------- .../builds/9/changelog.xml | 1 - .../test_freestyle_project/builds/9/log | 10 -------- .../pipelines/test_pipeline/builds/1/log | 19 --------------- .../pipelines/test_pipeline/builds/10/log | 21 ----------------- .../pipelines/test_pipeline/builds/11/log | 21 ----------------- .../pipelines/test_pipeline/builds/12/log | 21 ----------------- .../pipelines/test_pipeline/builds/13/log | 21 ----------------- .../pipelines/test_pipeline/builds/14/log | 21 ----------------- .../pipelines/test_pipeline/builds/15/log | 21 ----------------- .../pipelines/test_pipeline/builds/16/log | 21 ----------------- .../pipelines/test_pipeline/builds/17/log | 21 ----------------- .../pipelines/test_pipeline/builds/18/log | 21 ----------------- .../pipelines/test_pipeline/builds/19/log | 21 ----------------- .../pipelines/test_pipeline/builds/2/log | 19 --------------- .../pipelines/test_pipeline/builds/20/log | 21 ----------------- .../pipelines/test_pipeline/builds/21/log | 21 ----------------- .../pipelines/test_pipeline/builds/22/log | 21 ----------------- .../pipelines/test_pipeline/builds/3/log | 21 ----------------- .../pipelines/test_pipeline/builds/4/log | 21 ----------------- .../pipelines/test_pipeline/builds/5/log | 21 ----------------- .../pipelines/test_pipeline/builds/6/log | 21 ----------------- .../pipelines/test_pipeline/builds/7/log | 21 ----------------- .../pipelines/test_pipeline/builds/8/log | 21 ----------------- .../pipelines/test_pipeline/builds/9/log | 21 ----------------- jenkins/bootstrap/setupjenkins.sh | 0 80 files changed, 1010 deletions(-) delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/1/changelog.xml delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/1/log delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/10/changelog.xml delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/10/log delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/2/changelog.xml delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/2/log delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/3/changelog.xml delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/3/log delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/4/changelog.xml delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/4/log delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/5/changelog.xml delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/5/log delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/6/changelog.xml delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/6/log delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/7/changelog.xml delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/7/log delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/8/changelog.xml delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/8/log delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/9/changelog.xml delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/9/log delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/log delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/log delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/log delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/log delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/log delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/log delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/log delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/log delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/log delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/log delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/log delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/log delete mode 100644 jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/log delete mode 100644 jenkins/bootstrap/pipelines/test_freestyle_project/builds/1/changelog.xml delete mode 100644 jenkins/bootstrap/pipelines/test_freestyle_project/builds/1/log delete mode 100644 jenkins/bootstrap/pipelines/test_freestyle_project/builds/10/changelog.xml delete mode 100644 jenkins/bootstrap/pipelines/test_freestyle_project/builds/10/log delete mode 100644 jenkins/bootstrap/pipelines/test_freestyle_project/builds/11/changelog.xml delete mode 100644 jenkins/bootstrap/pipelines/test_freestyle_project/builds/11/log delete mode 100644 jenkins/bootstrap/pipelines/test_freestyle_project/builds/12/changelog.xml delete mode 100644 jenkins/bootstrap/pipelines/test_freestyle_project/builds/12/log delete mode 100644 jenkins/bootstrap/pipelines/test_freestyle_project/builds/2/changelog.xml delete mode 100644 jenkins/bootstrap/pipelines/test_freestyle_project/builds/2/log delete mode 100644 jenkins/bootstrap/pipelines/test_freestyle_project/builds/3/changelog.xml delete mode 100644 jenkins/bootstrap/pipelines/test_freestyle_project/builds/3/log delete mode 100644 jenkins/bootstrap/pipelines/test_freestyle_project/builds/4/changelog.xml delete mode 100644 jenkins/bootstrap/pipelines/test_freestyle_project/builds/4/log delete mode 100644 jenkins/bootstrap/pipelines/test_freestyle_project/builds/5/changelog.xml delete mode 100644 jenkins/bootstrap/pipelines/test_freestyle_project/builds/5/log delete mode 100644 jenkins/bootstrap/pipelines/test_freestyle_project/builds/6/changelog.xml delete mode 100644 jenkins/bootstrap/pipelines/test_freestyle_project/builds/6/log delete mode 100644 jenkins/bootstrap/pipelines/test_freestyle_project/builds/7/changelog.xml delete mode 100644 jenkins/bootstrap/pipelines/test_freestyle_project/builds/7/log delete mode 100644 jenkins/bootstrap/pipelines/test_freestyle_project/builds/8/changelog.xml delete mode 100644 jenkins/bootstrap/pipelines/test_freestyle_project/builds/8/log delete mode 100644 jenkins/bootstrap/pipelines/test_freestyle_project/builds/9/changelog.xml delete mode 100644 jenkins/bootstrap/pipelines/test_freestyle_project/builds/9/log delete mode 100644 jenkins/bootstrap/pipelines/test_pipeline/builds/1/log delete mode 100644 jenkins/bootstrap/pipelines/test_pipeline/builds/10/log delete mode 100644 jenkins/bootstrap/pipelines/test_pipeline/builds/11/log delete mode 100644 jenkins/bootstrap/pipelines/test_pipeline/builds/12/log delete mode 100644 jenkins/bootstrap/pipelines/test_pipeline/builds/13/log delete mode 100644 jenkins/bootstrap/pipelines/test_pipeline/builds/14/log delete mode 100644 jenkins/bootstrap/pipelines/test_pipeline/builds/15/log delete mode 100644 jenkins/bootstrap/pipelines/test_pipeline/builds/16/log delete mode 100644 jenkins/bootstrap/pipelines/test_pipeline/builds/17/log delete mode 100644 jenkins/bootstrap/pipelines/test_pipeline/builds/18/log delete mode 100644 jenkins/bootstrap/pipelines/test_pipeline/builds/19/log delete mode 100644 jenkins/bootstrap/pipelines/test_pipeline/builds/2/log delete mode 100644 jenkins/bootstrap/pipelines/test_pipeline/builds/20/log delete mode 100644 jenkins/bootstrap/pipelines/test_pipeline/builds/21/log delete mode 100644 jenkins/bootstrap/pipelines/test_pipeline/builds/22/log delete mode 100644 jenkins/bootstrap/pipelines/test_pipeline/builds/3/log delete mode 100644 jenkins/bootstrap/pipelines/test_pipeline/builds/4/log delete mode 100644 jenkins/bootstrap/pipelines/test_pipeline/builds/5/log delete mode 100644 jenkins/bootstrap/pipelines/test_pipeline/builds/6/log delete mode 100644 jenkins/bootstrap/pipelines/test_pipeline/builds/7/log delete mode 100644 jenkins/bootstrap/pipelines/test_pipeline/builds/8/log delete mode 100644 jenkins/bootstrap/pipelines/test_pipeline/builds/9/log mode change 100644 => 100755 jenkins/bootstrap/setupjenkins.sh diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/1/changelog.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/1/changelog.xml deleted file mode 100644 index a891191..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/1/changelog.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/1/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/1/log deleted file mode 100644 index 2c3db7a..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/1/log +++ /dev/null @@ -1,14 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Running as SYSTEM -Building in workspace /var/jenkins_home/workspace/monas_dev_work/monas_freestyle -[monas_freestyle] $ /bin/sh -xe /tmp/jenkins9016908622092578023.sh -+ echo This is from Monas freestyle pipline -This is from Monas freestyle pipline -+ sleep 80 -+ echo Hope you are enjoying the lab! -Hope you are enjoying the lab! -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/10/changelog.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/10/changelog.xml deleted file mode 100644 index a891191..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/10/changelog.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/10/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/10/log deleted file mode 100644 index 3459d63..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/10/log +++ /dev/null @@ -1,10 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Running as SYSTEM -Building in workspace /var/jenkins_home/workspace/monas_dev_work/monas_freestyle -[monas_freestyle] $ /bin/sh -xe /tmp/jenkins3300524887125021852.sh -+ echo This is from Monas freestyle pipline -This is from Monas freestyle pipline -+ sleep 80 -+ echo Hope you are enjoying the lab! -Hope you are enjoying the lab! -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/2/changelog.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/2/changelog.xml deleted file mode 100644 index a891191..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/2/changelog.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/2/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/2/log deleted file mode 100644 index 8090b69..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/2/log +++ /dev/null @@ -1,22 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Running as SYSTEM -Building in workspace /var/jenkins_home/workspace/monas_dev_work/monas_freestyle -[monas_freestyle] $ /bin/sh -xe /tmp/jenkins15206874689926477747.sh -+ echo This is from Monas freestyle pipline -This is from Monas freestyle pipline -+ sleep 80 -+ echo Hope you are enjoying the lab! -Hope you are enjoying the lab! -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/3/changelog.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/3/changelog.xml deleted file mode 100644 index a891191..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/3/changelog.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/3/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/3/log deleted file mode 100644 index ffa9809..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/3/log +++ /dev/null @@ -1,10 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Running as SYSTEM -Building in workspace /var/jenkins_home/workspace/monas_dev_work/monas_freestyle -[monas_freestyle] $ /bin/sh -xe /tmp/jenkins16101728440720008902.sh -+ echo This is from Monas freestyle pipline -This is from Monas freestyle pipline -+ sleep 80 -+ echo Hope you are enjoying the lab! -Hope you are enjoying the lab! -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/4/changelog.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/4/changelog.xml deleted file mode 100644 index a891191..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/4/changelog.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/4/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/4/log deleted file mode 100644 index 9fdf4a3..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/4/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Running as SYSTEM -Building in workspace /var/jenkins_home/workspace/monas_dev_work/monas_freestyle -[monas_freestyle] $ /bin/sh -xe /tmp/jenkins10237038946157997065.sh -+ echo This is from Monas freestyle pipline -This is from Monas freestyle pipline -+ sleep 80 -+ echo Hope you are enjoying the lab! -Hope you are enjoying the lab! -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/5/changelog.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/5/changelog.xml deleted file mode 100644 index a891191..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/5/changelog.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/5/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/5/log deleted file mode 100644 index 9d3883f..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/5/log +++ /dev/null @@ -1,18 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Running as SYSTEM -Building in workspace /var/jenkins_home/workspace/monas_dev_work/monas_freestyle -[monas_freestyle] $ /bin/sh -xe /tmp/jenkins10370683952649630887.sh -+ echo This is from Monas freestyle pipline -This is from Monas freestyle pipline -+ sleep 80 -+ echo Hope you are enjoying the lab! -Hope you are enjoying the lab! -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/6/changelog.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/6/changelog.xml deleted file mode 100644 index a891191..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/6/changelog.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/6/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/6/log deleted file mode 100644 index e57d051..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/6/log +++ /dev/null @@ -1,10 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Running as SYSTEM -Building in workspace /var/jenkins_home/workspace/monas_dev_work/monas_freestyle -[monas_freestyle] $ /bin/sh -xe /tmp/jenkins15123216238791727545.sh -+ echo This is from Monas freestyle pipline -This is from Monas freestyle pipline -+ sleep 80 -+ echo Hope you are enjoying the lab! -Hope you are enjoying the lab! -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/7/changelog.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/7/changelog.xml deleted file mode 100644 index a891191..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/7/changelog.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/7/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/7/log deleted file mode 100644 index af68541..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/7/log +++ /dev/null @@ -1,13 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Running as SYSTEM -Building in workspace /var/jenkins_home/workspace/monas_dev_work/monas_freestyle -[monas_freestyle] $ /bin/sh -xe /tmp/jenkins16367674679432572191.sh -+ echo This is from Monas freestyle pipline -This is from Monas freestyle pipline -+ sleep 80 -+ echo Hope you are enjoying the lab! -Hope you are enjoying the lab! -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/8/changelog.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/8/changelog.xml deleted file mode 100644 index a891191..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/8/changelog.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/8/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/8/log deleted file mode 100644 index 116de51..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/8/log +++ /dev/null @@ -1,13 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Running as SYSTEM -Building in workspace /var/jenkins_home/workspace/monas_dev_work/monas_freestyle -[monas_freestyle] $ /bin/sh -xe /tmp/jenkins11690688455637553376.sh -+ echo This is from Monas freestyle pipline -This is from Monas freestyle pipline -+ sleep 80 -+ echo Hope you are enjoying the lab! -Hope you are enjoying the lab! -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/9/changelog.xml b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/9/changelog.xml deleted file mode 100644 index a891191..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/9/changelog.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/9/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/9/log deleted file mode 100644 index ca88e10..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_freestyle/builds/9/log +++ /dev/null @@ -1,12 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Running as SYSTEM -Building in workspace /var/jenkins_home/workspace/monas_dev_work/monas_freestyle -[monas_freestyle] $ /bin/sh -xe /tmp/jenkins3020402151521087429.sh -+ echo This is from Monas freestyle pipline -This is from Monas freestyle pipline -+ sleep 80 -+ echo Hope you are enjoying the lab! -Hope you are enjoying the lab! -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/log deleted file mode 100644 index 4c329f5..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/1/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/monas_dev_work/monas_pipeline -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello World -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -Mona is the best dev <3 -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/log deleted file mode 100644 index a04a883..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/10/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/monas_dev_work/monas_pipeline@2 -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello World -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -Mona is the best dev <3 -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/log deleted file mode 100644 index 4c329f5..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/11/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/monas_dev_work/monas_pipeline -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello World -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -Mona is the best dev <3 -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/log deleted file mode 100644 index a04a883..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/12/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/monas_dev_work/monas_pipeline@2 -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello World -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -Mona is the best dev <3 -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/log deleted file mode 100644 index 4c329f5..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/13/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/monas_dev_work/monas_pipeline -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello World -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -Mona is the best dev <3 -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/log deleted file mode 100644 index a04a883..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/2/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/monas_dev_work/monas_pipeline@2 -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello World -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -Mona is the best dev <3 -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/log deleted file mode 100644 index 4c329f5..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/3/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/monas_dev_work/monas_pipeline -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello World -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -Mona is the best dev <3 -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/log deleted file mode 100644 index a04a883..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/4/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/monas_dev_work/monas_pipeline@2 -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello World -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -Mona is the best dev <3 -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/log deleted file mode 100644 index 4c329f5..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/5/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/monas_dev_work/monas_pipeline -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello World -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -Mona is the best dev <3 -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/log deleted file mode 100644 index a04a883..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/6/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/monas_dev_work/monas_pipeline@2 -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello World -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -Mona is the best dev <3 -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/log deleted file mode 100644 index 4c329f5..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/7/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/monas_dev_work/monas_pipeline -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello World -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -Mona is the best dev <3 -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/log deleted file mode 100644 index a04a883..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/8/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/monas_dev_work/monas_pipeline@2 -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello World -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -Mona is the best dev <3 -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/log b/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/log deleted file mode 100644 index 4c329f5..0000000 --- a/jenkins/bootstrap/pipelines/monas_dev_work/jobs/monas_pipeline/builds/9/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/monas_dev_work/monas_pipeline -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello World -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -Mona is the best dev <3 -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/1/changelog.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/1/changelog.xml deleted file mode 100644 index a891191..0000000 --- a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/1/changelog.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/1/log b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/1/log deleted file mode 100644 index bdca372..0000000 --- a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/1/log +++ /dev/null @@ -1,7 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Running as SYSTEM -Building in workspace /var/jenkins_home/workspace/test_freestyle_project -[test_freestyle_project] $ /bin/sh -xe /tmp/jenkins13684051147100214277.sh -+ echo hello valet! -hello valet! -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/10/changelog.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/10/changelog.xml deleted file mode 100644 index a891191..0000000 --- a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/10/changelog.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/10/log b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/10/log deleted file mode 100644 index beb6918..0000000 --- a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/10/log +++ /dev/null @@ -1,11 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Running as SYSTEM -Building in workspace /var/jenkins_home/workspace/test_freestyle_project -[test_freestyle_project] $ /bin/sh -xe /tmp/jenkins15793968118523702663.sh -+ echo hello valet! -hello valet! -+ sleep 70 -[test_freestyle_project] $ /bin/sh -xe /tmp/jenkins18230701555879250409.sh -+ echo I hope you are enjoying this lab -I hope you are enjoying this lab -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/11/changelog.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/11/changelog.xml deleted file mode 100644 index a891191..0000000 --- a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/11/changelog.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/11/log b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/11/log deleted file mode 100644 index c82e9b2..0000000 --- a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/11/log +++ /dev/null @@ -1,23 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Running as SYSTEM -Building in workspace /var/jenkins_home/workspace/test_freestyle_project -[test_freestyle_project] $ /bin/sh -xe /tmp/jenkins1460648102291079027.sh -+ echo hello valet! -hello valet! -+ sleep 70 -[test_freestyle_project] $ /bin/sh -xe /tmp/jenkins15980581592131390854.sh -+ echo I hope you are enjoying this lab -I hope you are enjoying this lab -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/12/changelog.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/12/changelog.xml deleted file mode 100644 index a891191..0000000 --- a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/12/changelog.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/12/log b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/12/log deleted file mode 100644 index a3844fe..0000000 --- a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/12/log +++ /dev/null @@ -1,11 +0,0 @@ -Started by timer -Running as SYSTEM -Building in workspace /var/jenkins_home/workspace/test_freestyle_project -[test_freestyle_project] $ /bin/sh -xe /tmp/jenkins15363542583057174856.sh -+ echo hello valet! -hello valet! -+ sleep 70 -[test_freestyle_project] $ /bin/sh -xe /tmp/jenkins13878872941609619134.sh -+ echo I hope you are enjoying this lab -I hope you are enjoying this lab -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/2/changelog.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/2/changelog.xml deleted file mode 100644 index a891191..0000000 --- a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/2/changelog.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/2/log b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/2/log deleted file mode 100644 index c8c9c90..0000000 --- a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/2/log +++ /dev/null @@ -1,7 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Running as SYSTEM -Building in workspace /var/jenkins_home/workspace/test_freestyle_project -[test_freestyle_project] $ /bin/sh -xe /tmp/jenkins3658064481822738080.sh -+ echo hello valet! -hello valet! -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/3/changelog.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/3/changelog.xml deleted file mode 100644 index a891191..0000000 --- a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/3/changelog.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/3/log b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/3/log deleted file mode 100644 index 846e229..0000000 --- a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/3/log +++ /dev/null @@ -1,7 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Running as SYSTEM -Building in workspace /var/jenkins_home/workspace/test_freestyle_project -[test_freestyle_project] $ /bin/sh -xe /tmp/jenkins17298691850980587336.sh -+ echo hello valet! -hello valet! -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/4/changelog.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/4/changelog.xml deleted file mode 100644 index a891191..0000000 --- a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/4/changelog.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/4/log b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/4/log deleted file mode 100644 index 5ecbd3c..0000000 --- a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/4/log +++ /dev/null @@ -1,7 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Running as SYSTEM -Building in workspace /var/jenkins_home/workspace/test_freestyle_project -[test_freestyle_project] $ /bin/sh -xe /tmp/jenkins11356266905852456159.sh -+ echo hello valet! -hello valet! -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/5/changelog.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/5/changelog.xml deleted file mode 100644 index a891191..0000000 --- a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/5/changelog.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/5/log b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/5/log deleted file mode 100644 index 157933e..0000000 --- a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/5/log +++ /dev/null @@ -1,7 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Running as SYSTEM -Building in workspace /var/jenkins_home/workspace/test_freestyle_project -[test_freestyle_project] $ /bin/sh -xe /tmp/jenkins15534595830832165184.sh -+ echo hello valet! -hello valet! -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/6/changelog.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/6/changelog.xml deleted file mode 100644 index a891191..0000000 --- a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/6/changelog.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/6/log b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/6/log deleted file mode 100644 index 776ccef..0000000 --- a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/6/log +++ /dev/null @@ -1,7 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Running as SYSTEM -Building in workspace /var/jenkins_home/workspace/test_freestyle_project -[test_freestyle_project] $ /bin/sh -xe /tmp/jenkins7389137647114761127.sh -+ echo hello valet! -hello valet! -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/7/changelog.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/7/changelog.xml deleted file mode 100644 index a891191..0000000 --- a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/7/changelog.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/7/log b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/7/log deleted file mode 100644 index 42e9346..0000000 --- a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/7/log +++ /dev/null @@ -1,7 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Running as SYSTEM -Building in workspace /var/jenkins_home/workspace/test_freestyle_project -[test_freestyle_project] $ /bin/sh -xe /tmp/jenkins7408952000734900891.sh -+ echo hello valet! -hello valet! -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/8/changelog.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/8/changelog.xml deleted file mode 100644 index a891191..0000000 --- a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/8/changelog.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/8/log b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/8/log deleted file mode 100644 index 98bda6c..0000000 --- a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/8/log +++ /dev/null @@ -1,10 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Running as SYSTEM -Building in workspace /var/jenkins_home/workspace/test_freestyle_project -[test_freestyle_project] $ /bin/sh -xe /tmp/jenkins8463996779658917677.sh -+ echo hello valet! -hello valet! -[test_freestyle_project] $ /bin/sh -xe /tmp/jenkins9889071894245779004.sh -+ echo I hope you are enjoying this lab -I hope you are enjoying this lab -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/9/changelog.xml b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/9/changelog.xml deleted file mode 100644 index a891191..0000000 --- a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/9/changelog.xml +++ /dev/null @@ -1 +0,0 @@ - \ No newline at end of file diff --git a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/9/log b/jenkins/bootstrap/pipelines/test_freestyle_project/builds/9/log deleted file mode 100644 index 73fad49..0000000 --- a/jenkins/bootstrap/pipelines/test_freestyle_project/builds/9/log +++ /dev/null @@ -1,10 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -Running as SYSTEM -Building in workspace /var/jenkins_home/workspace/test_freestyle_project -[test_freestyle_project] $ /bin/sh -xe /tmp/jenkins338607376209710241.sh -+ echo hello valet! -hello valet! -[test_freestyle_project] $ /bin/sh -xe /tmp/jenkins5098271457762861642.sh -+ echo I hope you are enjoying this lab -I hope you are enjoying this lab -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_pipeline/builds/1/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/1/log deleted file mode 100644 index c54810d..0000000 --- a/jenkins/bootstrap/pipelines/test_pipeline/builds/1/log +++ /dev/null @@ -1,19 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/test_pipeline -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -world -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_pipeline/builds/10/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/10/log deleted file mode 100644 index 49f4702..0000000 --- a/jenkins/bootstrap/pipelines/test_pipeline/builds/10/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/test_pipeline@2 -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -world -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_pipeline/builds/11/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/11/log deleted file mode 100644 index ea85fa8..0000000 --- a/jenkins/bootstrap/pipelines/test_pipeline/builds/11/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/test_pipeline -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -world -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_pipeline/builds/12/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/12/log deleted file mode 100644 index 49f4702..0000000 --- a/jenkins/bootstrap/pipelines/test_pipeline/builds/12/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/test_pipeline@2 -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -world -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_pipeline/builds/13/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/13/log deleted file mode 100644 index ea85fa8..0000000 --- a/jenkins/bootstrap/pipelines/test_pipeline/builds/13/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/test_pipeline -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -world -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_pipeline/builds/14/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/14/log deleted file mode 100644 index 49f4702..0000000 --- a/jenkins/bootstrap/pipelines/test_pipeline/builds/14/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/test_pipeline@2 -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -world -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_pipeline/builds/15/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/15/log deleted file mode 100644 index ea85fa8..0000000 --- a/jenkins/bootstrap/pipelines/test_pipeline/builds/15/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/test_pipeline -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -world -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_pipeline/builds/16/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/16/log deleted file mode 100644 index 49f4702..0000000 --- a/jenkins/bootstrap/pipelines/test_pipeline/builds/16/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/test_pipeline@2 -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -world -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_pipeline/builds/17/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/17/log deleted file mode 100644 index ea85fa8..0000000 --- a/jenkins/bootstrap/pipelines/test_pipeline/builds/17/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/test_pipeline -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -world -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_pipeline/builds/18/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/18/log deleted file mode 100644 index 49f4702..0000000 --- a/jenkins/bootstrap/pipelines/test_pipeline/builds/18/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/test_pipeline@2 -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -world -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_pipeline/builds/19/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/19/log deleted file mode 100644 index ea85fa8..0000000 --- a/jenkins/bootstrap/pipelines/test_pipeline/builds/19/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/test_pipeline -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -world -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_pipeline/builds/2/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/2/log deleted file mode 100644 index f790d37..0000000 --- a/jenkins/bootstrap/pipelines/test_pipeline/builds/2/log +++ /dev/null @@ -1,19 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/test_pipeline@2 -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -world -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_pipeline/builds/20/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/20/log deleted file mode 100644 index 49f4702..0000000 --- a/jenkins/bootstrap/pipelines/test_pipeline/builds/20/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/test_pipeline@2 -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -world -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_pipeline/builds/21/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/21/log deleted file mode 100644 index ea85fa8..0000000 --- a/jenkins/bootstrap/pipelines/test_pipeline/builds/21/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/test_pipeline -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -world -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_pipeline/builds/22/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/22/log deleted file mode 100644 index 49f4702..0000000 --- a/jenkins/bootstrap/pipelines/test_pipeline/builds/22/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/test_pipeline@2 -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -world -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_pipeline/builds/3/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/3/log deleted file mode 100644 index ea85fa8..0000000 --- a/jenkins/bootstrap/pipelines/test_pipeline/builds/3/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/test_pipeline -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -world -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_pipeline/builds/4/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/4/log deleted file mode 100644 index 49f4702..0000000 --- a/jenkins/bootstrap/pipelines/test_pipeline/builds/4/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/test_pipeline@2 -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -world -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_pipeline/builds/5/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/5/log deleted file mode 100644 index ea85fa8..0000000 --- a/jenkins/bootstrap/pipelines/test_pipeline/builds/5/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/test_pipeline -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -world -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_pipeline/builds/6/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/6/log deleted file mode 100644 index 49f4702..0000000 --- a/jenkins/bootstrap/pipelines/test_pipeline/builds/6/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/test_pipeline@2 -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -world -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_pipeline/builds/7/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/7/log deleted file mode 100644 index ea85fa8..0000000 --- a/jenkins/bootstrap/pipelines/test_pipeline/builds/7/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/test_pipeline -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -world -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_pipeline/builds/8/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/8/log deleted file mode 100644 index 49f4702..0000000 --- a/jenkins/bootstrap/pipelines/test_pipeline/builds/8/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/test_pipeline@2 -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -world -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/pipelines/test_pipeline/builds/9/log b/jenkins/bootstrap/pipelines/test_pipeline/builds/9/log deleted file mode 100644 index ea85fa8..0000000 --- a/jenkins/bootstrap/pipelines/test_pipeline/builds/9/log +++ /dev/null @@ -1,21 +0,0 @@ -Started by user ha:////4FxN3sVU1tfWybQ5wvlOBwq6oYMxrAYMsdxQHSOeUawSAAAAlx+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAy+EgZu/dLi1CL9xJTczDwAcQdo88AAAAA=Begona Guereca -ha:////4HTsYlfm8yzA10Ef1InFhY6wDKShISv2+989tkXDACMCAAAAoh+LCAAAAAAAAP9tjTEOwjAQBM8BClpKHuFItIiK1krDC0x8GCfWnbEdkooX8TX+gCESFVvtrLSa5wtWKcKBo5UdUu8otU4GP9jS5Mixv3geZcdn2TIl9igbHBs2eJyx4YwwR1SwULBGaj0nRzbDRnX6rmuvydanHMu2V1A5c4MHCFXMWcf8hSnC9jqYxPTz/BXAFEIGsfuclm8zQVqFvQAAAA==[Pipeline] Start of Pipeline -ha:////4H5s9Y19xkL2dUDNzO/+l2xHfqEtID+gVe/XH1A7EJBzAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycohUghExsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jduZBmjwAAAAA==[Pipeline] node -Still waiting to schedule task -Waiting for next available executor -Running on ha:////4AIjV8zxOhwEh8zECkJglj4JjKJpg9vR0QIy8O3BR1+WAAAAoR+LCAAAAAAAAP9b85aBtbiIQTGjNKU4P08vOT+vOD8nVc83PyU1x6OyILUoJzMv2y+/JJUBAhiZGBgqihhk0NSjKDWzXb3RdlLBUSYGJk8GtpzUvPSSDB8G5tKinBIGIZ+sxLJE/ZzEvHT94JKizLx0a6BxUmjGOUNodHsLgAz2EgZR/eT83ILSktQifY2k0sycEt3MPE19AHHxbH3KAAAAJenkins in /var/jenkins_home/workspace/test_pipeline -ha:////4I/cUPga8caY06bZpyrxZ/t2HhO12t4dn/zQlsAr7adIAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gA0xsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jfoP95RwAAAAA==[Pipeline] { -ha:////4PdwHgvy7xLtbIjfVmcQJcTvK9hoFBN5c85nsNtWXAtjAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0gQkxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jc09154wAAAAA==[Pipeline] stage -ha:////4HTJIxD4EQoodzcmhsi796Okta0O99UuIDkQiNkFA9aQAAAApR+LCAAAAAAAAP9tjTEOwjAUQ3+KOrAycoh0ggUxsUZZOEFIQkgb/d8mKe3EibgadyBQiQlLlmxL1nu+oE4RjhQdby12HpP2vA+jK4lPFLtroIm3dOGaMFGwXNpJkrGnpUrKFhaxClYC1hZ1oOTRZdiIVt1VExS65pxj2Q4CKm8GeAAThZxVzN8yR9jeRpMIf5y/AJj7DGxXvP/86jek7ggRwAAAAA==[Pipeline] { (Hello) -ha:////4ITNj6wfQw+ViFoaCqyu/9RAYv/f6IZXCI3ggkR+C1nlAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbaWGsbAmNJ0AWEZb8zwLrbuWJvJp3kLiJlZNMMm+a93rDOic4UbLcG+wdZu14DKOti0+U+lugiXu6ck2YKRguzSSpM+cFJRUDS1gDKwEbgzpQdmgLbIVXD9UGhba9lFS/o4DGdQM8gYlqLiqVL8wJdvexy4Q/z18BzLEA29ce4gfg7KmOvAAAAA==[Pipeline] echo -Hello -ha:////4InD9eBN31pOgH/KrQV/kiftXi8xQC5gL3UMTSIfyaPvAAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbGRNjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED8v8DEJvAAAAA==[Pipeline] sleep -Sleeping for 1 min 20 sec -ha:////4A2H2vdJz9M4j0fs/DEVLHICCQ3J3krO3NJ8wYGl+ZF5AAAAoh+LCAAAAAAAAP9tjTEOAiEURD9rLGwtPQTbmRhjZUtoPAGyiLDkfxZYdytP5NW8g8RNrJxkknnTvNcb1jnBiZLl3mDvMGvHYxhtXXyi1N8CTdzTlWvCTMFwaSZJnTkvKKkYWMIaWAnYGNSBskNbYCu8eqg2KLTtpaT6HQU0rhvgCUxUc1GpfGFOsLuPXSb8ef4KYI4F2L72ED9uwSoQvAAAAA==[Pipeline] echo -world -ha:////4PwaiMAZAwUq+PL2aE01tdFIg9bGXJlBI7MxswA0e1yvAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiJoY+NY2WZoPEGEGAOZXUwWofJEXs07yMiMlb/67zXv9cYyRRw5OtVYaj2lyqsu9G56auDYXgMPquGLqpgSB6tKO5Rc29OMJYvFvCzHQmNlqQqcPDnBWjfmYYpgyBVniZM7aOS+vuOJTE9lMVG+MEZsbn2dmH6dvwGMXSfId1tBtv8AqUpLPL0AAAA=[Pipeline] } -ha:////4PuU9GydTCJRRa1O2LR8giOafLp5ZdXi+OQlWbryKjUTAAAAox+LCAAAAAAAAP9tjTESgjAQRT84FraWHiIMhZVjZZuh8QQRYgxkdjFZhMoTeTXvICMzVv7qv9e81xvrFHHk6FRrqfOUaq/6MLj5qZFjdw08qpYvqmZKHKyq7FhxY08LViwWy7IcK42NpTpw8uQEW92ahymCIVecJc7uoJH75o4nMj2XxUT5whSxuw1NYvp1/gYw9b0gL0tBtv8AozIimL0AAAA=[Pipeline] // stage -ha:////4GXRWBwXS8o5EY5LAUMrzGNBrI4RgRuusUhDJ5etH22TAAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb3eCbP8B5XiFqL0AAAA=[Pipeline] } -ha:////4GXAOx4ZwYfHA9gt76GYJSGAkpNg3dCnsmfMKJYurI0FAAAAoh+LCAAAAAAAAP9tjbEOgjAURS8YB1dHP6LEMBon14bFL6hQa6F5D9uHMPlF/pr/IJHEyTvdc5bzemOdIo4cnWotdZ5S7VUfBjc/NXLsroFH1fJF1UyJg1WVHStu7GnBisViWZZjpbGxVAdOnpxgq1vzMEUw5IqzxNkdNHLf3PFEpueymChfmCJ2t6FJTL/O3wCmvhfk+1KQlR/2xIELvQAAAA==[Pipeline] // node -ha:////4MfhlFpsKKWk0c/A5r3WbWL4emAr9+j8R276zJxwMv81AAAAox+LCAAAAAAAAP9tjTEOwjAQBDdBFLSUPMIRiA5R0VppeIFJjHFi3QX7QlLxIr7GH4iIRMVWO9PM641lijhydKqx1HpKlVdd6N301MCxvQYeVMMXVTElDlaVdii5tqcZSxaLeVmOhcbKUhU4eXKCtW7MwxTBkCvOEid30Mh9fccTmZ7KYqJ8YYzY3Po6Mf06fwMYu06Qb/eCbPcBcCimzr0AAAA=[Pipeline] End of Pipeline -Finished: SUCCESS diff --git a/jenkins/bootstrap/setupjenkins.sh b/jenkins/bootstrap/setupjenkins.sh old mode 100644 new mode 100755 From ff19794701c8ac121bfa9d2f45664f3726612f51 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Tue, 9 Aug 2022 10:57:03 -0700 Subject: [PATCH 19/59] Add logic to help control flow of setup script better --- jenkins/bootstrap/setupjenkins.sh | 24 ++++++++++++++++++++---- 1 file changed, 20 insertions(+), 4 deletions(-) diff --git a/jenkins/bootstrap/setupjenkins.sh b/jenkins/bootstrap/setupjenkins.sh index 5c2e2fc..29d5d11 100755 --- a/jenkins/bootstrap/setupjenkins.sh +++ b/jenkins/bootstrap/setupjenkins.sh @@ -6,8 +6,24 @@ password="password" echo "Building Jenkins instance!" -# Build jenkins image from docker compose file -docker build -t jenkins:$container_name . +if [ "$(docker ps -a | grep jenkins:$container_name)" ]; then + echo -e "Jenkins is running" + docker container start jenkins +else + echo -e "\nStarting a new Jenkins container" + # Build jenkins image from docker compose file + docker build -t jenkins:$container_name . -# Build container -docker run -d --name jenkins -p 8080:8080 --env JENKINS_ADMIN_ID=$username --env JENKINS_ADMIN_PASSWORD=$password jenkins:$container_name + # Build container + docker run -d --name jenkins -p 8080:8080 --env JENKINS_ADMIN_ID=$username --env JENKINS_ADMIN_PASSWORD=$password jenkins:$container_name +fi + +echo -e "\nWaiting for Jenkins to start..." +while ! curl -s http://localhost:8080/ > /dev/null; do + echo -e "." + sleep 5 +done + +echo -e '\nJenkins is up and running!' +echo -e "\nUsername: admin" +echo -e "\bPassword: password" \ No newline at end of file From 32becf9013dd5b8a313a615599c066b251852b81 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Tue, 9 Aug 2022 12:54:55 -0700 Subject: [PATCH 20/59] Renamed setup file --- jenkins/bootstrap/{setupjenkins.sh => setup.sh} | 4 ++++ 1 file changed, 4 insertions(+) rename jenkins/bootstrap/{setupjenkins.sh => setup.sh} (77%) diff --git a/jenkins/bootstrap/setupjenkins.sh b/jenkins/bootstrap/setup.sh similarity index 77% rename from jenkins/bootstrap/setupjenkins.sh rename to jenkins/bootstrap/setup.sh index 29d5d11..e7fb5e0 100755 --- a/jenkins/bootstrap/setupjenkins.sh +++ b/jenkins/bootstrap/setup.sh @@ -18,6 +18,10 @@ else docker run -d --name jenkins -p 8080:8080 --env JENKINS_ADMIN_ID=$username --env JENKINS_ADMIN_PASSWORD=$password jenkins:$container_name fi +# allow valet to talk to Jenkins by removing network isolation between containers +export DOCKER_ARGS="--network=host" +grep -q "export DOCKER_ARGS=" ~/.bashrc || echo 'export DOCKER_ARGS="--network=host"' >> ~/.bashrc + echo -e "\nWaiting for Jenkins to start..." while ! curl -s http://localhost:8080/ > /dev/null; do echo -e "." From 9855ca893614f75de0753e97a3fab7ba048f513b Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Tue, 9 Aug 2022 14:40:16 -0700 Subject: [PATCH 21/59] remove temp for now --- .gitignore | 2 -- 1 file changed, 2 deletions(-) diff --git a/.gitignore b/.gitignore index 45805d9..f4adbb6 100644 --- a/.gitignore +++ b/.gitignore @@ -3,8 +3,6 @@ ## ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore -.tmp - # User-specific files *.rsuser *.suo From fe512cba165530391d684b5778bddd02d139a75d Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Tue, 9 Aug 2022 14:56:05 -0700 Subject: [PATCH 22/59] Add setup script --- jenkins/readme.md | 72 ++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 71 insertions(+), 1 deletion(-) diff --git a/jenkins/readme.md b/jenkins/readme.md index 8349c4a..8483559 100644 --- a/jenkins/readme.md +++ b/jenkins/readme.md @@ -1 +1,71 @@ -# Coming Soon! +# Valet labs for Jenkins + +This lab bootstraps a Valet environment using GitHub Codespaces and enables you to spin up a Jenkins instance against which to run the Valet CI/CD migration tool. + +- [Use this Repo as a template](#repo-template) +- [Use Valet with a codespace](#use-valet-with-a-codespace) +- [Prerequisites](#prerequisites) +- [Bootstrap Jenkins](#bootstrap-jenkins) + +## Repo template + +1. Verify you are in your own Repository created from the landing page [Valet Labs](https://github.com/valet-customers/labs). + +## Prerequisites + +1. Create a GitHub personal access token. + - Navigate to your GitHub `Settings` - click your profile photo and click `Settings`. + - Go to `Developer Settings` + - Go to `Personal Access Tokens` -> `Legacy tokens (if present)` + - Click `Generate new token` -> `Legacy tokens (if present)`. If required, provide your password. + - Select at least these scopes: `read packages` and `workflow`. Optionally, provide a text in the **Note** field and change the expiration. + - Click `Generate token` + - Copy the PAT somewhere safe and temporary. + +## Use Valet with a codespace + +1. Start the codespace + - Click the `Code` with button down arrow above repository on the repository's landing page. + - Click the `Codespaces` tab + - Click `Create codespaces on main` to create the codespace. If you are in another branch then the `main` branch, the codespace will button will have the current branch specified. + - Wait a couple minutes, then verify that the codespace starts up. Once it is fully booted up, the termininal should be present. +2. Verify Valet CLI is installed and working. More information on the [GitHub Valet CLI extension](https://github.com/github/gh-valet) + - Verify Valet CLI is installed and working + - Run `gh valet version` in the Visual Studio Code terminal and verify the output looks like the below image. Note the valet version will be different than below as the latest version gets pulled down. + - If `gh valet version` did not produce a similar image with a version please follow these instructions [Troubleshoot GH Valet extension](#troubleshoot-gh-valet-extension) + +## Bootstrap Jenkins + + 1. Run the Jenkins setup script. This script will setup GitLab and ensure it is ready to use. In general, this script should be run first if you are starting a new codespace or restarting an existing one. + +- Navigate to the terminal within your Codespace. +- Run `source jenkins/bootstrap/setupjenkins.sh` to kick off the creation of your Jenkins instance. +- After a couple seconds, a pop-up box should appear with a link to the forwarded URL for your Jenkins instance. +- You can also access the fowarded URL by going to the `Ports` tab in your terminal. Right click on the URL listed under the `Local Address` and clicking the `Open in Browser` tab. +- Once you have navigated to the url, the following default credentials have been assigned: + + - username: `admin` + - password: `password` + +7. Click the `Sign in` button and you should now see your new Jenkins instance with a few pre-populataed pipelines. + +## Labs for Jenkins + +Perform the following labs to test-drive Valet + +- TBD + +## Troubleshoot GH Valet extension + +Manually Install the GitHub CLI Valet extension. More information on the [GitHub Valet CLI extension](https://github.com/github/gh-valet) + +- Verify you are in the Visual Studio Code terminal +- Run this command to install the GitHub Valet extension +- `gh extension install github/gh-valet` +- Verify the result of the install is: `✓ Installed extension github/gh-valet` +- If you get a similiar error to the following, click the link to authorize the token + ![linktolcickauth](https://user-images.githubusercontent.com/26442605/169588015-9414404f-82b6-4d0f-89d4-5f0e6941b029.png) + - Restart Codespace after clicking the link +- Verify Valet CLI is installed and working + +## Troubleshooting Jenkins From a2c31cad088f5791f8fcb31e77153bb74b7b48ba Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Tue, 9 Aug 2022 15:33:33 -0700 Subject: [PATCH 23/59] Update readme.md --- jenkins/readme.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/jenkins/readme.md b/jenkins/readme.md index 8483559..9fcacaf 100644 --- a/jenkins/readme.md +++ b/jenkins/readme.md @@ -69,3 +69,9 @@ Manually Install the GitHub CLI Valet extension. More information on the [GitHub - Verify Valet CLI is installed and working ## Troubleshooting Jenkins +1. Navigate to the Docker tab on your left hand side. +2. Under the `Containers` tab you should see a Docker container `jenkins:valet` listed with a green play button ▶ + - If you see the `jenkins:valet` container, but it has a red stopped symbol next to it ▢, right click on the container and click on `start`, the container should begin running again. + - If the container does not start even after trying to manually start it, right click on the `jenkins:valet` container and click the `remove` button. Next continue by following all the #bootstrap-jenkins instructions again. + +Screen Shot 2022-08-09 at 3 06 46 PM From d799cba908593794cddc981e8ee830adccc70609 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Wed, 10 Aug 2022 12:58:19 -0700 Subject: [PATCH 24/59] Update jenkins/readme.md Co-authored-by: Ethan Dennis --- jenkins/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/readme.md b/jenkins/readme.md index 9fcacaf..47d581b 100644 --- a/jenkins/readme.md +++ b/jenkins/readme.md @@ -47,7 +47,7 @@ This lab bootstraps a Valet environment using GitHub Codespaces and enables you - username: `admin` - password: `password` -7. Click the `Sign in` button and you should now see your new Jenkins instance with a few pre-populataed pipelines. +2. Click the `Sign in` button and you should now see your new Jenkins instance with a few pre-populataed pipelines. ## Labs for Jenkins From d992c16a0e7e3318beeb9a32d3f1987493a4c02e Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Wed, 10 Aug 2022 12:58:24 -0700 Subject: [PATCH 25/59] Update jenkins/readme.md Co-authored-by: Ethan Dennis --- jenkins/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/readme.md b/jenkins/readme.md index 47d581b..753c858 100644 --- a/jenkins/readme.md +++ b/jenkins/readme.md @@ -41,7 +41,7 @@ This lab bootstraps a Valet environment using GitHub Codespaces and enables you - Navigate to the terminal within your Codespace. - Run `source jenkins/bootstrap/setupjenkins.sh` to kick off the creation of your Jenkins instance. - After a couple seconds, a pop-up box should appear with a link to the forwarded URL for your Jenkins instance. -- You can also access the fowarded URL by going to the `Ports` tab in your terminal. Right click on the URL listed under the `Local Address` and clicking the `Open in Browser` tab. +- You can also access the forwarded URL by going to the `Ports` tab in your terminal. Right click on the URL listed under the `Local Address` and clicking the `Open in Browser` tab. - Once you have navigated to the url, the following default credentials have been assigned: - username: `admin` From 14cb27237387c5982b4146e8701eef175a56b222 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Wed, 10 Aug 2022 12:58:33 -0700 Subject: [PATCH 26/59] Update jenkins/readme.md Co-authored-by: j-dunham --- jenkins/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/readme.md b/jenkins/readme.md index 753c858..39a9ad4 100644 --- a/jenkins/readme.md +++ b/jenkins/readme.md @@ -3,8 +3,8 @@ This lab bootstraps a Valet environment using GitHub Codespaces and enables you to spin up a Jenkins instance against which to run the Valet CI/CD migration tool. - [Use this Repo as a template](#repo-template) -- [Use Valet with a codespace](#use-valet-with-a-codespace) - [Prerequisites](#prerequisites) +- [Use Valet with a codespace](#use-valet-with-a-codespace) - [Bootstrap Jenkins](#bootstrap-jenkins) ## Repo template From e479692fc74a67958fc135001d286d7de29ece05 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Wed, 10 Aug 2022 13:10:45 -0700 Subject: [PATCH 27/59] Update jenkins/readme.md Co-authored-by: j-dunham --- jenkins/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/readme.md b/jenkins/readme.md index 39a9ad4..a727bf2 100644 --- a/jenkins/readme.md +++ b/jenkins/readme.md @@ -66,7 +66,7 @@ Manually Install the GitHub CLI Valet extension. More information on the [GitHub - If you get a similiar error to the following, click the link to authorize the token ![linktolcickauth](https://user-images.githubusercontent.com/26442605/169588015-9414404f-82b6-4d0f-89d4-5f0e6941b029.png) - Restart Codespace after clicking the link -- Verify Valet CLI is installed and working +- Verify Valet CLI is installed and working by running `gh valet version` ## Troubleshooting Jenkins 1. Navigate to the Docker tab on your left hand side. From 699243fbad6cb66ba3b5327783a1ef6644fffa7f Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Wed, 10 Aug 2022 13:17:55 -0700 Subject: [PATCH 28/59] Update jenkins/readme.md Co-authored-by: j-dunham --- jenkins/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/readme.md b/jenkins/readme.md index a727bf2..ce0754d 100644 --- a/jenkins/readme.md +++ b/jenkins/readme.md @@ -36,7 +36,7 @@ This lab bootstraps a Valet environment using GitHub Codespaces and enables you ## Bootstrap Jenkins - 1. Run the Jenkins setup script. This script will setup GitLab and ensure it is ready to use. In general, this script should be run first if you are starting a new codespace or restarting an existing one. + 1. Run the Jenkins setup script. This script will setup Jenkins and ensure it is ready to use. In general, this script should be run first if you are starting a new codespace or restarting an existing one. - Navigate to the terminal within your Codespace. - Run `source jenkins/bootstrap/setupjenkins.sh` to kick off the creation of your Jenkins instance. From f7751b69739978239877c404b66304b45cccae00 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Wed, 10 Aug 2022 13:32:19 -0700 Subject: [PATCH 29/59] Spacing --- jenkins/readme.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/jenkins/readme.md b/jenkins/readme.md index 9fcacaf..f2a2703 100644 --- a/jenkins/readme.md +++ b/jenkins/readme.md @@ -69,9 +69,10 @@ Manually Install the GitHub CLI Valet extension. More information on the [GitHub - Verify Valet CLI is installed and working ## Troubleshooting Jenkins -1. Navigate to the Docker tab on your left hand side. + +1. Navigate to the Docker tab on your left hand side. 2. Under the `Containers` tab you should see a Docker container `jenkins:valet` listed with a green play button ▶ - - If you see the `jenkins:valet` container, but it has a red stopped symbol next to it ▢, right click on the container and click on `start`, the container should begin running again. - - If the container does not start even after trying to manually start it, right click on the `jenkins:valet` container and click the `remove` button. Next continue by following all the #bootstrap-jenkins instructions again. - + - If you see the `jenkins:valet` container, but it has a red stopped symbol next to it ▢, right click on the container and click on `start`, the container should begin running again. + - If the container does not start even after trying to manually start it, right click on the `jenkins:valet` container and click the `remove` button. Next continue by following all the #bootstrap-jenkins instructions again. + Screen Shot 2022-08-09 at 3 06 46 PM From d50280be3c51366cbd44dc4701c33e1dc22cc683 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Wed, 10 Aug 2022 13:52:10 -0700 Subject: [PATCH 30/59] Update readme.md --- jenkins/readme.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/jenkins/readme.md b/jenkins/readme.md index 4288675..28b69f8 100644 --- a/jenkins/readme.md +++ b/jenkins/readme.md @@ -33,6 +33,8 @@ This lab bootstraps a Valet environment using GitHub Codespaces and enables you - Verify Valet CLI is installed and working - Run `gh valet version` in the Visual Studio Code terminal and verify the output looks like the below image. Note the valet version will be different than below as the latest version gets pulled down. - If `gh valet version` did not produce a similar image with a version please follow these instructions [Troubleshoot GH Valet extension](#troubleshoot-gh-valet-extension) + +Screen Shot 2022-08-10 at 1 45 20 PM ## Bootstrap Jenkins @@ -64,10 +66,11 @@ Manually Install the GitHub CLI Valet extension. More information on the [GitHub - `gh extension install github/gh-valet` - Verify the result of the install is: `✓ Installed extension github/gh-valet` - If you get a similiar error to the following, click the link to authorize the token - ![linktolcickauth](https://user-images.githubusercontent.com/26442605/169588015-9414404f-82b6-4d0f-89d4-5f0e6941b029.png) - Restart Codespace after clicking the link - Verify Valet CLI is installed and working by running `gh valet version` +![linktolcickauth](https://user-images.githubusercontent.com/26442605/169588015-9414404f-82b6-4d0f-89d4-5f0e6941b029.png) + ## Troubleshooting Jenkins 1. Navigate to the Docker tab on your left hand side. From 8625bb17d69e85615f8df9d88e91898533c2d002 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Wed, 10 Aug 2022 13:53:03 -0700 Subject: [PATCH 31/59] Update jenkins/readme.md --- jenkins/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/readme.md b/jenkins/readme.md index 28b69f8..03f0206 100644 --- a/jenkins/readme.md +++ b/jenkins/readme.md @@ -61,7 +61,7 @@ Perform the following labs to test-drive Valet Manually Install the GitHub CLI Valet extension. More information on the [GitHub Valet CLI extension](https://github.com/github/gh-valet) -- Verify you are in the Visual Studio Code terminal +- Verify you are in the codespace terminal - Run this command to install the GitHub Valet extension - `gh extension install github/gh-valet` - Verify the result of the install is: `✓ Installed extension github/gh-valet` From 82c091ca8fac343976bf10a4a90a022be7e0770a Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Wed, 10 Aug 2022 14:17:00 -0700 Subject: [PATCH 32/59] Update jenkins/readme.md --- jenkins/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/readme.md b/jenkins/readme.md index 03f0206..5ad3ab3 100644 --- a/jenkins/readme.md +++ b/jenkins/readme.md @@ -41,7 +41,7 @@ This lab bootstraps a Valet environment using GitHub Codespaces and enables you 1. Run the Jenkins setup script. This script will setup Jenkins and ensure it is ready to use. In general, this script should be run first if you are starting a new codespace or restarting an existing one. - Navigate to the terminal within your Codespace. -- Run `source jenkins/bootstrap/setupjenkins.sh` to kick off the creation of your Jenkins instance. +- Run `source jenkins/bootstrap/setup.sh` to kick off the creation of your Jenkins instance. - After a couple seconds, a pop-up box should appear with a link to the forwarded URL for your Jenkins instance. - You can also access the forwarded URL by going to the `Ports` tab in your terminal. Right click on the URL listed under the `Local Address` and clicking the `Open in Browser` tab. - Once you have navigated to the url, the following default credentials have been assigned: From e85034408ac11c3b41f18b11bb763c37a52419b6 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Wed, 10 Aug 2022 16:38:31 -0700 Subject: [PATCH 33/59] Added the configure instructions --- jenkins/valet-configure-lab.md | 75 ++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 jenkins/valet-configure-lab.md diff --git a/jenkins/valet-configure-lab.md b/jenkins/valet-configure-lab.md new file mode 100644 index 0000000..6f5b5a0 --- /dev/null +++ b/jenkins/valet-configure-lab.md @@ -0,0 +1,75 @@ +# Configure Valet to work with Jenkins + +In this lab, you will use the Valet `configure` command to set up the required information to communicate with the Jenkins and GitHub instances. The `configure` command can be used for all of the supported providers, in this lab we will be focusing on Jenkins. + +- [Prerequisites](#prerequisites) +- [Configuring Valet](#configuring-valet) +- [Verify Valet Works](#verify-valet-works) +- [Next Lab](#next-lab) + +## Prerequisites + +1. Followed [steps](../Jenkins#readme) to set up your codespace environment and start your Jenkins instanace. + +## Configuring Valet + +1. Login to the Jenkins instance to generate a personal access token: + 1. Click the `PORTS` tab in the codespace terminal window. + 2. In the `PORTS` tab find the row for port 8080. + 3. Hover over the address under the `Local Address` column, and click the globe to "open in browser". + 4. Login to the Jenkins server and generate a Jenkins API token. + - Click the `admin` button located within the top right menu. + - Click on the `configure` gear located on the left hand panel. + - Under the `API token` section, click `Add new Token`. + - Add a defaualt name to your token, then click `Generate`. + - Copy the token that was generated and record token for a later step. +2. Create a GitHub personal access token (PAT). + - Navigate to your GitHub `Settings` - click your profile photo and then click `Settings`. + - Go to `Developer Settings` + - Go to `Personal Access Tokens` -> `Legacy tokens (if present)` + - Click `Generate new token` -> `Legacy tokens (if present)`. If required, provide your password. + - Select at least these scopes: `read packages` and `workflow`. Optionally, provide a text in the **Note** field and change the expiration. + - Click `Generate token` + - Copy the token somewhere safe and temporary. +3. Run Valet configure commands + - In the codespace terminal window click back to the `TERMINAL` tab. + - Within the terminal, navigate into the Jenkins directory `cd valet` + - Run `gh valet configure` + - Use the down arrow key to highlight `Jenkins`, press the spacebar to select, then hit enter to accept. + - At the prompt enter your GitHub Username and press enter. + - At the GitHub Container Registry prompt enter the GitHub PAT generated in step 3 and press enter + - At the GitHub PAT prompt enter the GitHub PAT generated in step 3 and press enter. + - At the GitHub url prompt enter the GitHub instance url or hit enter to accept the default, if you are using github.com then the default is the right choice. + - At the Jenkins token prompt enter the Jenkins access token from step 2 and press enter. + - At the Jenkins url prompt enter `http://localhost:8080/` and press enter. + - At the Personal access token to fetch source code in GitHub prompt, if any of your Jenkins pipelines have source code in a GitHub repository enter the GitHub PAT that would have acess to these files. +4. If all went well you should see a similar output in your terminal: +![configure-result](https://user-images.githubusercontent.com/18723510/183990474-d0b2559c-d2bf-40d9-ac43-19af53e45329.png) + +## Verify Valet Works + +To verify Valet works we are going to run a `update` and `dry-run` command. We will go further into details about the `dry-run` command in a later lab, but for now we want to get the latest version of Valet and confirm that Valet can perform a dry-run with no errors. + +1. In the codespace terminal update Valet by running `gh valet update` +2. In the terminal you should see a confirmation that it logged into the GitHub Container Registry and pulled the latest version. + + ``` + Login Succeeded + latest: Pulling from valet-customers/valet-cli + Digest: sha256:a7d00dee8a37e25da59daeed44b1543f476b00fa2c41c47f48deeaf34a215bbb + Status: Image is up to date for ghcr.io/valet-customers/valet-cli:latest + ghcr.io/valet-customers/valet-cli:latest + ``` + + 3. Next, lets run the dry-run command in the codespaces terminal, to verify we can talk to Jenkins + + ``` + gh valet dry-run jenkins --source-url https://localhost:8080/job/test_pipeline/ --output-dir ./tmp/dry-run-lab + ``` + + 4. In the terminal you should see the command was successful, if not it is a good time to practice the configure command again and make sure the access tokens values are correct and were generated with the correct permissions. + ![configure-dry-run](https://user-images.githubusercontent.com/18723510/183989794-d51fa29d-b4c0-4074-8402-a55ffcea3a6b.png) + +### Next Lab + +# TODO From 31c07769861ff030632dd5d94b65c972ce661efe Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Wed, 10 Aug 2022 16:46:49 -0700 Subject: [PATCH 34/59] Update valet-configure-lab.md --- jenkins/valet-configure-lab.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/jenkins/valet-configure-lab.md b/jenkins/valet-configure-lab.md index 6f5b5a0..ea4989d 100644 --- a/jenkins/valet-configure-lab.md +++ b/jenkins/valet-configure-lab.md @@ -23,6 +23,9 @@ In this lab, you will use the Valet `configure` command to set up the required i - Under the `API token` section, click `Add new Token`. - Add a defaualt name to your token, then click `Generate`. - Copy the token that was generated and record token for a later step. + +![configure-result](https://user-images.githubusercontent.com/19557880/184041667-d06cb7f2-a885-474e-b728-7567314aeaf3.png) + 2. Create a GitHub personal access token (PAT). - Navigate to your GitHub `Settings` - click your profile photo and then click `Settings`. - Go to `Developer Settings` @@ -44,7 +47,7 @@ In this lab, you will use the Valet `configure` command to set up the required i - At the Jenkins url prompt enter `http://localhost:8080/` and press enter. - At the Personal access token to fetch source code in GitHub prompt, if any of your Jenkins pipelines have source code in a GitHub repository enter the GitHub PAT that would have acess to these files. 4. If all went well you should see a similar output in your terminal: -![configure-result](https://user-images.githubusercontent.com/18723510/183990474-d0b2559c-d2bf-40d9-ac43-19af53e45329.png) +![configure-result](https://user-images.githubusercontent.com/19557880/184041328-ce54ea22-b0cd-4c84-b02c-10ad7b09ad89.png) ## Verify Valet Works @@ -68,8 +71,9 @@ To verify Valet works we are going to run a `update` and `dry-run` command. We ``` 4. In the terminal you should see the command was successful, if not it is a good time to practice the configure command again and make sure the access tokens values are correct and were generated with the correct permissions. - ![configure-dry-run](https://user-images.githubusercontent.com/18723510/183989794-d51fa29d-b4c0-4074-8402-a55ffcea3a6b.png) + ![configure-dry-run](https://user-images.githubusercontent.com/19557880/184041510-018d7a17-9966-4a0f-af3f-4092dfb90ac0.png) + ### Next Lab -# TODO +TODO From c300a656320b6fdfec6ed39a1722f92d5e2ec6b3 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Thu, 11 Aug 2022 08:55:49 -0700 Subject: [PATCH 35/59] Update jenkins/readme.md --- jenkins/readme.md | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/jenkins/readme.md b/jenkins/readme.md index 5ad3ab3..eb9e71c 100644 --- a/jenkins/readme.md +++ b/jenkins/readme.md @@ -11,16 +11,6 @@ This lab bootstraps a Valet environment using GitHub Codespaces and enables you 1. Verify you are in your own Repository created from the landing page [Valet Labs](https://github.com/valet-customers/labs). -## Prerequisites - -1. Create a GitHub personal access token. - - Navigate to your GitHub `Settings` - click your profile photo and click `Settings`. - - Go to `Developer Settings` - - Go to `Personal Access Tokens` -> `Legacy tokens (if present)` - - Click `Generate new token` -> `Legacy tokens (if present)`. If required, provide your password. - - Select at least these scopes: `read packages` and `workflow`. Optionally, provide a text in the **Note** field and change the expiration. - - Click `Generate token` - - Copy the PAT somewhere safe and temporary. ## Use Valet with a codespace From cc85424576f2d9671dd92e1478ca57ed80ecf051 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Thu, 11 Aug 2022 15:11:44 -0700 Subject: [PATCH 36/59] Adding Jenkins audit lab --- jenkins/valet-audit-lab.md | 114 +++++++++++++++++++++++++++++++++++++ 1 file changed, 114 insertions(+) create mode 100644 jenkins/valet-audit-lab.md diff --git a/jenkins/valet-audit-lab.md b/jenkins/valet-audit-lab.md new file mode 100644 index 0000000..07887da --- /dev/null +++ b/jenkins/valet-audit-lab.md @@ -0,0 +1,114 @@ +# Audit Jenkins pipelines using the Valet audit command + +In this lab, you will use Valet to `audit` an Azure DevOps organization. The `audit` command can be used to scan a CI server and output a summary of the current pipelines. + +What happens behind the scenes is that Valet will perform a `dry-run` transformation on each of the Jenkins pipelines to its GitHub actions equivalent. Once that process is complete, Valet will perform an aggregation of all of these transformed workflows. This summary can be used as a planning tool and to help you understand how complete of a migration is possible with Valet. + +- [Prerequisites](#prerequisites) +- [Perform an audit](#perform-an-audit) +- [View audit output](#view-audit-output) +- [Review the pipelines](#review-the-pipelines) +- [Next Lab](#next-lab) + +## Prerequisites + +1. Follow all steps [here](../jenkins#readme) to set up your environment. +2. Follow all steps [here](../jenkins#valet_configure_lab) to finish setting up Valet. + +## Perform an audit + +You will use the codespace preconfigured in this repository to perform the audit. + +1. Navigate to the codespace Visual Studio Code terminal. +2. Verify you are in the root directory. +3. Now, from root dirrectory, run the following Valet audit command: + +``` +gh valet audit jenkins --output-dir tmp/audit +``` + +4. Valet displays green log files to indicate a successful audit + +### Example + +![valet-audit-1](https://user-images.githubusercontent.com/19557880/184247823-77aa9fa0-da6a-48dc-b7a3-32e1a633045a.png) + +## View audit output + +The audit summary, logs, config files, jenkinsfiles, and transformed Actions workflows should all be located in the `tmp/audit` folder. + +1. Under the `audit` folder find the `audit_summary.md` +2. Right-click the `audit_summary.md` file and select `Open Preview` +3. The file contains details about your current pipelines and what can be migrated 100% automatically vs. what will need some manual intervention or aren't supported by GitHub Actions. +4. Review the file, it should like like the image below: + +### Example + +![valet-audit-2](https://user-images.githubusercontent.com/26442605/169615428-26f7a962-2064-46d0-8206-ea930109b252.png) + +## Review the pipelines + +### Pipelines + +The audit summary starts by giving a summary of the types of pipelines that were extracted from Jenkins. + +- It shows how there were a total of 4 pipelines extracted. + +- 50% pipelines were successful. This means that Valet knew how to map all the constructs of the Jenkins pipeline to a GitHub Actions equivalent. So all of the build pluggins and triggers that are referenced were all successfully converted into a GitHub Actions equivalent. + +- 50% pipelines were partially successful. That means that Valet knew how to map all the constructs of the Jenkins pipeline but there may be a plugin that is referenced that Valet doesn’t get automatically mapped to a Github Actions equivalent. + +- 0% of these pipelines are unsupported. If there were any that would fall under this category that would mean that those pipelines are using a pipeline type that is fundamentally not supported by Valet. If there were any scripted pipelines they would appear here. + +- 0% of these fail altogether. pipeline. If there were any pipelines that would fall under this category taht would mean that these pipelines were misconfigured or there was an issue with Valet. + +Under the `Job types` section, we can see that the `audit` command is able to support the conversion of project, freestyle (flow-defintion), and multibranch pipelines from Jenkins and convert them to a GitHub Actions workflow. Valet does not support converting [scripted pipelines](https://www.jenkins.io/doc/book/pipeline/syntax/#scripted-pipeline) (e.g. pure Groovy). + +#### Example + +![valet-audit-3](https://user-images.githubusercontent.com/19557880/184190501-6bb2ad34-1680-404a-9cb5-93012a25e0c8.png) + +### Build steps + +Under the `Build steps` section we can see a breakdown of the build steps that were used in these pipelines. + +- Supported: 7/9 discrete build steps are considered known by Valet. When Valet encounters a build step of this type, it knows exactly how to map that into a GitHub Actions equivalent. +- Unknown: 2/9 discrete build steps are considered known by Valet. When Valet enounters a build step of this type, it does not yet know to map this automatically to a GitHub Action equivalent. +- Unsupported: There are currently no build steps that are unknown so this category is not shown. If there were unsupported steps, it would mean one of three things: + 1. The way that plugin was configured for a given job is unsupported. + 2. The plugin itself is fundamentally not supported in GitHub Actions. + 3. It's supported by default in GH Actions. + +Under the `Actions` section we have the list of the actions that were used in order to implement the transformation of all of these build steps. Valet is a planning tool that can be really helpful to facilitate this migration to GitHub Actions and this list of Actions is a great place to understand what dependencies you will be taking on third-party actions after this migration. + + So if you are doing things like setting up the allow list of third-party Actions in a GitHub Enterprise server instance this list of Actions is a fantastic place to begin security reviews and audits of what third-party actions to depend on. + +#### Example + +![valet-audit-4](https://user-images.githubusercontent.com/19557880/184191935-c29c3121-66e2-4c33-a71e-07ad1ef42b5c.png) + +### Trigger, Environment, Other + +Similar to `Build steps`, there are `Trigger`, `Environment`, a and catch all `Other` section that breakdown each of their uses accross the audited pipelines. + +### Example + +![valet-audit-4](https://user-images.githubusercontent.com/19557880/184197153-8477c147-646b-4d05-8988-29ce4d28241f.png) + +### Manual Tasks + +Under the Manual task section you will find a list of all the manual tasks that the pipelines would surface in a migration. Manual tasks are a Valet construct that denote what `secrets` and `self-hosted` runners were referenced in the pipeline and will need to be migrated manually. We will see how these manual tasks appear on a pull request when we do a migration in a lab later on. + +### Files + +At the end of the Audit Summary page you will find a list of all of the files that were written to disk. Generally, for any given pipeline, you’ll find 2 or 3 associated files. In these files are the actual converted GitHub Actions workflows. + +In addition, you’ll see a file that shows the raw JSON data that we pull from Jenkins as well as any associated Jenkinsfiles for a given job. These files are really useful for us as the engineering team to help debug any issues and to understand what may have gone on in a transformation. + +#### Example + +![valet-audit-5](https://user-images.githubusercontent.com/19557880/184228434-4b57f77b-db93-43d6-8b8d-4eebfc445160.png) + +### Next Lab + +[Dry run the migration of a Jenkins pipeline to GitHub Actions](valet-dry-run-lab.md) From 4a18eb3b186edbfebe0856a8a3fb6d4a517851a9 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Thu, 11 Aug 2022 15:14:26 -0700 Subject: [PATCH 37/59] Typo --- jenkins/valet-audit-lab.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/valet-audit-lab.md b/jenkins/valet-audit-lab.md index 07887da..3cdc9f4 100644 --- a/jenkins/valet-audit-lab.md +++ b/jenkins/valet-audit-lab.md @@ -1,6 +1,6 @@ # Audit Jenkins pipelines using the Valet audit command -In this lab, you will use Valet to `audit` an Azure DevOps organization. The `audit` command can be used to scan a CI server and output a summary of the current pipelines. +In this lab, you will use Valet to `audit` a Jenkins organization. The `audit` command can be used to scan a CI server and output a summary of the current pipelines. What happens behind the scenes is that Valet will perform a `dry-run` transformation on each of the Jenkins pipelines to its GitHub actions equivalent. Once that process is complete, Valet will perform an aggregation of all of these transformed workflows. This summary can be used as a planning tool and to help you understand how complete of a migration is possible with Valet. From 967a52e7bd490c7f03cc9e7bf5381f3e9de219b3 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Thu, 11 Aug 2022 15:30:59 -0700 Subject: [PATCH 38/59] Update valet-audit-lab.md --- jenkins/valet-audit-lab.md | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/jenkins/valet-audit-lab.md b/jenkins/valet-audit-lab.md index 3cdc9f4..27f2b90 100644 --- a/jenkins/valet-audit-lab.md +++ b/jenkins/valet-audit-lab.md @@ -2,7 +2,7 @@ In this lab, you will use Valet to `audit` a Jenkins organization. The `audit` command can be used to scan a CI server and output a summary of the current pipelines. -What happens behind the scenes is that Valet will perform a `dry-run` transformation on each of the Jenkins pipelines to its GitHub actions equivalent. Once that process is complete, Valet will perform an aggregation of all of these transformed workflows. This summary can be used as a planning tool and to help you understand how complete of a migration is possible with Valet. +What happens behind the scenes is that Valet will perform a `dry-run` transformation on each of the Jenkins pipelines into its GitHub actions equivalent. Once that process is complete, Valet will perform an aggregation of all of these transformed workflows. This aggregate summary can be used as a planning tool and to help you understand how complete of a migration is possible with Valet. - [Prerequisites](#prerequisites) - [Perform an audit](#perform-an-audit) @@ -21,13 +21,13 @@ You will use the codespace preconfigured in this repository to perform the audit 1. Navigate to the codespace Visual Studio Code terminal. 2. Verify you are in the root directory. -3. Now, from root dirrectory, run the following Valet audit command: +3. Now, from root directory, run the following Valet audit command: ``` gh valet audit jenkins --output-dir tmp/audit ``` -4. Valet displays green log files to indicate a successful audit +4. Valet displays green log files to indicate a successful audit. ### Example @@ -35,7 +35,7 @@ gh valet audit jenkins --output-dir tmp/audit ## View audit output -The audit summary, logs, config files, jenkinsfiles, and transformed Actions workflows should all be located in the `tmp/audit` folder. +The audit summary, logs, config files, jenkinsfiles, and transformed Actions Workflows should all be located within the `tmp/audit` folder. 1. Under the `audit` folder find the `audit_summary.md` 2. Right-click the `audit_summary.md` file and select `Open Preview` @@ -52,15 +52,15 @@ The audit summary, logs, config files, jenkinsfiles, and transformed Actions wor The audit summary starts by giving a summary of the types of pipelines that were extracted from Jenkins. -- It shows how there were a total of 4 pipelines extracted. +- It shows that there are a total of 4 pipelines extracted. -- 50% pipelines were successful. This means that Valet knew how to map all the constructs of the Jenkins pipeline to a GitHub Actions equivalent. So all of the build pluggins and triggers that are referenced were all successfully converted into a GitHub Actions equivalent. +- 50% pipelines were successful. This means that Valet knew how to map all the constructs of the Jenkins pipeline to a GitHub Actions equivalent. All of the build pluggins and triggers that are referenced were all successfully converted into a GitHub Actions equivalent. -- 50% pipelines were partially successful. That means that Valet knew how to map all the constructs of the Jenkins pipeline but there may be a plugin that is referenced that Valet doesn’t get automatically mapped to a Github Actions equivalent. +- 50% pipelines were partially successful. This means that Valet knew how to map all the constructs of the Jenkins pipeline but there may be a plugin that was referenced that Valet wasn't able to automatically map to a Github Actions equivalent. -- 0% of these pipelines are unsupported. If there were any that would fall under this category that would mean that those pipelines are using a pipeline type that is fundamentally not supported by Valet. If there were any scripted pipelines they would appear here. +- 0% of these pipelines are unsupported. If there were any that would fall under this category, that would mean that those pipelines were using a pipeline type that is fundamentally not supported by Valet. If a Jenkins instance had any scripted pipelines they would appear here. -- 0% of these fail altogether. pipeline. If there were any pipelines that would fall under this category taht would mean that these pipelines were misconfigured or there was an issue with Valet. +- 0% of these fail altogether. If there were any pipelines that would fall under this category, that would mean that those pipelines were misconfigured or there was an issue with Valet. Under the `Job types` section, we can see that the `audit` command is able to support the conversion of project, freestyle (flow-defintion), and multibranch pipelines from Jenkins and convert them to a GitHub Actions workflow. Valet does not support converting [scripted pipelines](https://www.jenkins.io/doc/book/pipeline/syntax/#scripted-pipeline) (e.g. pure Groovy). @@ -73,15 +73,15 @@ Under the `Job types` section, we can see that the `audit` command is able to su Under the `Build steps` section we can see a breakdown of the build steps that were used in these pipelines. - Supported: 7/9 discrete build steps are considered known by Valet. When Valet encounters a build step of this type, it knows exactly how to map that into a GitHub Actions equivalent. -- Unknown: 2/9 discrete build steps are considered known by Valet. When Valet enounters a build step of this type, it does not yet know to map this automatically to a GitHub Action equivalent. +- Unknown: 2/9 discrete build steps are considered unknown by Valet. When Valet enounters a build step of this type, it does not yet know to map this automatically to a GitHub Action equivalent. - Unsupported: There are currently no build steps that are unknown so this category is not shown. If there were unsupported steps, it would mean one of three things: 1. The way that plugin was configured for a given job is unsupported. 2. The plugin itself is fundamentally not supported in GitHub Actions. - 3. It's supported by default in GH Actions. + 3. It's supported by default in GitHub Actions. -Under the `Actions` section we have the list of the actions that were used in order to implement the transformation of all of these build steps. Valet is a planning tool that can be really helpful to facilitate this migration to GitHub Actions and this list of Actions is a great place to understand what dependencies you will be taking on third-party actions after this migration. +Under the `Actions` section we have the list of the Actions that were used in order to implement the transformation of all of these build steps. Valet is a planning tool that can help in facilitating the migration into GitHub Actions and this list of Actions is a great place to understand what dependencies you would be taking on third-party Actions after this migration. - So if you are doing things like setting up the allow list of third-party Actions in a GitHub Enterprise server instance this list of Actions is a fantastic place to begin security reviews and audits of what third-party actions to depend on. +For example, if you are doing things like setting up the allow list of third-party Actions in a GitHub Enterprise server instance this list of Actions is a fantastic place to begin security reviews and audits of what third-party actions to depend on. #### Example @@ -103,7 +103,7 @@ Under the Manual task section you will find a list of all the manual tasks that At the end of the Audit Summary page you will find a list of all of the files that were written to disk. Generally, for any given pipeline, you’ll find 2 or 3 associated files. In these files are the actual converted GitHub Actions workflows. -In addition, you’ll see a file that shows the raw JSON data that we pull from Jenkins as well as any associated Jenkinsfiles for a given job. These files are really useful for us as the engineering team to help debug any issues and to understand what may have gone on in a transformation. +In addition, you’ll see a file that shows the raw JSON data that we pull from Jenkins as well as any associated Jenkinsfiles for a given job. These files are really useful for engineering teams to help debug any issues and to understand what may have gone on in a transformation. #### Example From a73bad7543a2dbd9bc23bc5d4544a334ff910839 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Thu, 11 Aug 2022 15:48:51 -0700 Subject: [PATCH 39/59] typo --- jenkins/valet-configure-lab.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jenkins/valet-configure-lab.md b/jenkins/valet-configure-lab.md index 6f5b5a0..fa5e2e0 100644 --- a/jenkins/valet-configure-lab.md +++ b/jenkins/valet-configure-lab.md @@ -33,8 +33,8 @@ In this lab, you will use the Valet `configure` command to set up the required i - Copy the token somewhere safe and temporary. 3. Run Valet configure commands - In the codespace terminal window click back to the `TERMINAL` tab. - - Within the terminal, navigate into the Jenkins directory `cd valet` - - Run `gh valet configure` + - Within the terminal, ensure you are in the root dirrectory. + - Run `gh valet configure`. - Use the down arrow key to highlight `Jenkins`, press the spacebar to select, then hit enter to accept. - At the prompt enter your GitHub Username and press enter. - At the GitHub Container Registry prompt enter the GitHub PAT generated in step 3 and press enter From c87b6d91c3236cad37af56aa9e0c00e89257d86b Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Thu, 11 Aug 2022 15:53:36 -0700 Subject: [PATCH 40/59] Updated pics --- jenkins/valet-configure-lab.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/jenkins/valet-configure-lab.md b/jenkins/valet-configure-lab.md index 11a25b7..b9456c7 100644 --- a/jenkins/valet-configure-lab.md +++ b/jenkins/valet-configure-lab.md @@ -23,9 +23,9 @@ In this lab, you will use the Valet `configure` command to set up the required i - Under the `API token` section, click `Add new Token`. - Add a defaualt name to your token, then click `Generate`. - Copy the token that was generated and record token for a later step. - + ![configure-result](https://user-images.githubusercontent.com/19557880/184041667-d06cb7f2-a885-474e-b728-7567314aeaf3.png) - + 2. Create a GitHub personal access token (PAT). - Navigate to your GitHub `Settings` - click your profile photo and then click `Settings`. - Go to `Developer Settings` @@ -71,8 +71,7 @@ To verify Valet works we are going to run a `update` and `dry-run` command. We ``` 4. In the terminal you should see the command was successful, if not it is a good time to practice the configure command again and make sure the access tokens values are correct and were generated with the correct permissions. - ![configure-dry-run](https://user-images.githubusercontent.com/19557880/184041510-018d7a17-9966-4a0f-af3f-4092dfb90ac0.png) - + ![configure-dry-run](https://user-images.githubusercontent.com/19557880/184255620-8e9b120e-5de0-41df-9cb6-c52028de3b0f.png) ### Next Lab From b8ed7e8bfa6a2c29f0b1de5684cc819a9f9fa279 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Thu, 11 Aug 2022 16:37:28 -0700 Subject: [PATCH 41/59] Add further commentary --- jenkins/valet-audit-lab.md | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/jenkins/valet-audit-lab.md b/jenkins/valet-audit-lab.md index 3cdc9f4..497a750 100644 --- a/jenkins/valet-audit-lab.md +++ b/jenkins/valet-audit-lab.md @@ -4,6 +4,8 @@ In this lab, you will use Valet to `audit` a Jenkins organization. The `audit` c What happens behind the scenes is that Valet will perform a `dry-run` transformation on each of the Jenkins pipelines to its GitHub actions equivalent. Once that process is complete, Valet will perform an aggregation of all of these transformed workflows. This summary can be used as a planning tool and to help you understand how complete of a migration is possible with Valet. +By the end of this lab you should have performed an audit on the demo Jenkins instance, and have a good understanding of the components that make up an audit. + - [Prerequisites](#prerequisites) - [Perform an audit](#perform-an-audit) - [View audit output](#view-audit-output) @@ -17,17 +19,21 @@ What happens behind the scenes is that Valet will perform a `dry-run` transforma ## Perform an audit -You will use the codespace preconfigured in this repository to perform the audit. +We will be performing an audit against a preconfigured Jenkins instance. Before running the command we need to collect some information: -1. Navigate to the codespace Visual Studio Code terminal. -2. Verify you are in the root directory. -3. Now, from root dirrectory, run the following Valet audit command: + 1. Do we want to audit the entire Jenkins instance, or just a single folder? __In this example we will be auditing the entire Jenkins instance, but in the future if you wanted to configure a specific folder to be audited add the `-f flag to the audit command__ + 2. Where do we want to store the result? __./tmp/audit. This can be any valid path on the system. In the case of codespaces it is generally best to use `./tmp/SOME_DIRECTORY_HERE` so the files show in explorer__ + +### Steps + +1. Navigate to the codespace terminal. +2. Now, from root dirrectory, run the following Valet audit command: ``` gh valet audit jenkins --output-dir tmp/audit ``` -4. Valet displays green log files to indicate a successful audit +3. Valet displays green log files to indicate a successful audit ### Example From 6b7ddcd88081ff071774dd47a67ef40ea8567abb Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Fri, 12 Aug 2022 09:34:06 -0700 Subject: [PATCH 42/59] Update jenkins/valet-audit-lab.md Co-authored-by: j-dunham --- jenkins/valet-audit-lab.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/valet-audit-lab.md b/jenkins/valet-audit-lab.md index 100e97d..231cf2a 100644 --- a/jenkins/valet-audit-lab.md +++ b/jenkins/valet-audit-lab.md @@ -2,7 +2,7 @@ In this lab, you will use Valet to `audit` a Jenkins organization. The `audit` command can be used to scan a CI server and output a summary of the current pipelines. -What happens behind the scenes is that Valet will perform a `dry-run` transformation on each of the Jenkins pipelines into its GitHub actions equivalent. Once that process is complete, Valet will perform an aggregation of all of these transformed workflows. This aggregate summary can be used as a planning tool and to help you understand how complete of a migration is possible with Valet. +What happens behind the scenes is that Valet will perform a `dry-run` on each of the Jenkins pipelines. Once that is complete, Valet will perform an aggregation of all of the transformed workflows. This aggregate summary can be used as a planning tool and help understand how complete of a migration is possible with Valet. By the end of this lab you should have performed an audit on the demo Jenkins instance, and have a good understanding of the components that make up an audit. From a6eacee1a399635d858cde32447807b50bc86bd3 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Fri, 12 Aug 2022 09:34:20 -0700 Subject: [PATCH 43/59] Update jenkins/valet-audit-lab.md Co-authored-by: j-dunham --- jenkins/valet-audit-lab.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/valet-audit-lab.md b/jenkins/valet-audit-lab.md index 231cf2a..93bea7d 100644 --- a/jenkins/valet-audit-lab.md +++ b/jenkins/valet-audit-lab.md @@ -4,7 +4,7 @@ In this lab, you will use Valet to `audit` a Jenkins organization. The `audit` c What happens behind the scenes is that Valet will perform a `dry-run` on each of the Jenkins pipelines. Once that is complete, Valet will perform an aggregation of all of the transformed workflows. This aggregate summary can be used as a planning tool and help understand how complete of a migration is possible with Valet. -By the end of this lab you should have performed an audit on the demo Jenkins instance, and have a good understanding of the components that make up an audit. +By the end of this lab you will have performed an audit on the demo Jenkins instance, and have a good understanding of the components that make up an audit. - [Prerequisites](#prerequisites) - [Perform an audit](#perform-an-audit) From 561d266d06a9a49bbaec62a66bb19b9bc8240fcd Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Fri, 12 Aug 2022 09:34:28 -0700 Subject: [PATCH 44/59] Update jenkins/valet-audit-lab.md Co-authored-by: j-dunham --- jenkins/valet-audit-lab.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/valet-audit-lab.md b/jenkins/valet-audit-lab.md index 93bea7d..9f4f810 100644 --- a/jenkins/valet-audit-lab.md +++ b/jenkins/valet-audit-lab.md @@ -15,7 +15,7 @@ By the end of this lab you will have performed an audit on the demo Jenkins inst ## Prerequisites 1. Follow all steps [here](../jenkins#readme) to set up your environment. -2. Follow all steps [here](../jenkins#valet_configure_lab) to finish setting up Valet. +2. Follow all steps [here](../jenkins#valet_configure_lab) to configure Valet. ## Perform an audit From 5417017c1c0e54618df571a908e28949c8559e47 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Fri, 12 Aug 2022 09:34:54 -0700 Subject: [PATCH 45/59] Update jenkins/valet-audit-lab.md Co-authored-by: j-dunham --- jenkins/valet-audit-lab.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/valet-audit-lab.md b/jenkins/valet-audit-lab.md index 9f4f810..5a11e94 100644 --- a/jenkins/valet-audit-lab.md +++ b/jenkins/valet-audit-lab.md @@ -80,7 +80,7 @@ Under the `Build steps` section we can see a breakdown of the build steps that w - Supported: 7/9 discrete build steps are considered known by Valet. When Valet encounters a build step of this type, it knows exactly how to map that into a GitHub Actions equivalent. - Unknown: 2/9 discrete build steps are considered unknown by Valet. When Valet enounters a build step of this type, it does not yet know to map this automatically to a GitHub Action equivalent. -- Unsupported: There are currently no build steps that are unknown so this category is not shown. If there were unsupported steps, it would mean one of three things: +- Unsupported: There are currently no build steps that are unsupported so this category is not shown. If there were it would mean one of three things: 1. The way that plugin was configured for a given job is unsupported. 2. The plugin itself is fundamentally not supported in GitHub Actions. 3. It's supported by default in GitHub Actions. From 3214027ac5a185b2683ddb46fde55b5b4d1129f6 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Fri, 12 Aug 2022 09:35:01 -0700 Subject: [PATCH 46/59] Update jenkins/valet-audit-lab.md Co-authored-by: j-dunham --- jenkins/valet-audit-lab.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/valet-audit-lab.md b/jenkins/valet-audit-lab.md index 5a11e94..a887505 100644 --- a/jenkins/valet-audit-lab.md +++ b/jenkins/valet-audit-lab.md @@ -95,7 +95,7 @@ For example, if you are doing things like setting up the allow list of third-par ### Trigger, Environment, Other -Similar to `Build steps`, there are `Trigger`, `Environment`, a and catch all `Other` section that breakdown each of their uses accross the audited pipelines. +Similar to `Build steps`, there are `Trigger`, `Environment`, and a catch all `Other` section that breakdown each of their uses accross the audited pipelines. ### Example From d960da14b540e0b7e38c6abc62d378cacee46f46 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Fri, 12 Aug 2022 09:35:21 -0700 Subject: [PATCH 47/59] Update jenkins/valet-audit-lab.md Co-authored-by: j-dunham --- jenkins/valet-audit-lab.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/valet-audit-lab.md b/jenkins/valet-audit-lab.md index a887505..6d54070 100644 --- a/jenkins/valet-audit-lab.md +++ b/jenkins/valet-audit-lab.md @@ -103,7 +103,7 @@ Similar to `Build steps`, there are `Trigger`, `Environment`, and a catch all `O ### Manual Tasks -Under the Manual task section you will find a list of all the manual tasks that the pipelines would surface in a migration. Manual tasks are a Valet construct that denote what `secrets` and `self-hosted` runners were referenced in the pipeline and will need to be migrated manually. We will see how these manual tasks appear on a pull request when we do a migration in a lab later on. +Under the Manual task section you will find a list of all the manual tasks that the pipelines would surface in a migration. Manual tasks are Valet's way of indicating tasks a user needs to do in order for a pipeline to be functional, such as adding `secrets`, or setting up a `self-hosted` runner. We will see how these manual tasks appear on a pull request when we do a migration in a lab later on. ### Files From 52325cd0867ce1cc098309419e3eb992dffa794c Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Fri, 12 Aug 2022 10:16:50 -0700 Subject: [PATCH 48/59] Update valet-audit-lab.md --- jenkins/valet-audit-lab.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/valet-audit-lab.md b/jenkins/valet-audit-lab.md index 6d54070..2e62069 100644 --- a/jenkins/valet-audit-lab.md +++ b/jenkins/valet-audit-lab.md @@ -50,7 +50,7 @@ The audit summary, logs, config files, jenkinsfiles, and transformed Actions Wor ### Example -![valet-audit-2](https://user-images.githubusercontent.com/26442605/169615428-26f7a962-2064-46d0-8206-ea930109b252.png) +![valet-audit-2](https://user-images.githubusercontent.com/19557880/184410021-a5668d21-b290-48de-8aa0-00d2baa7ab90.png) ## Review the pipelines From 61e347b3d2e38c3a84e13bc5628626b165848c63 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Fri, 12 Aug 2022 10:23:15 -0700 Subject: [PATCH 49/59] Update valet-audit-lab.md --- jenkins/valet-audit-lab.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/jenkins/valet-audit-lab.md b/jenkins/valet-audit-lab.md index 2e62069..29b77e8 100644 --- a/jenkins/valet-audit-lab.md +++ b/jenkins/valet-audit-lab.md @@ -37,7 +37,7 @@ gh valet audit jenkins --output-dir tmp/audit ### Example -![valet-audit-1](https://user-images.githubusercontent.com/19557880/184247823-77aa9fa0-da6a-48dc-b7a3-32e1a633045a.png) +valet-audit-1 ## View audit output @@ -50,7 +50,7 @@ The audit summary, logs, config files, jenkinsfiles, and transformed Actions Wor ### Example -![valet-audit-2](https://user-images.githubusercontent.com/19557880/184410021-a5668d21-b290-48de-8aa0-00d2baa7ab90.png) +valet-audit-2 ## Review the pipelines @@ -72,7 +72,7 @@ Under the `Job types` section, we can see that the `audit` command is able to su #### Example -![valet-audit-3](https://user-images.githubusercontent.com/19557880/184190501-6bb2ad34-1680-404a-9cb5-93012a25e0c8.png) +valet-audit-3 ### Build steps @@ -91,7 +91,7 @@ For example, if you are doing things like setting up the allow list of third-par #### Example -![valet-audit-4](https://user-images.githubusercontent.com/19557880/184191935-c29c3121-66e2-4c33-a71e-07ad1ef42b5c.png) +valet-audit-4 ### Trigger, Environment, Other @@ -99,7 +99,7 @@ Similar to `Build steps`, there are `Trigger`, `Environment`, and a catch all `O ### Example -![valet-audit-4](https://user-images.githubusercontent.com/19557880/184197153-8477c147-646b-4d05-8988-29ce4d28241f.png) +valet-audit-5 ### Manual Tasks @@ -113,7 +113,7 @@ In addition, you’ll see a file that shows the raw JSON data that we pull from #### Example -![valet-audit-5](https://user-images.githubusercontent.com/19557880/184228434-4b57f77b-db93-43d6-8b8d-4eebfc445160.png) +valet-audit-6 ### Next Lab From 82dd7d97ef913aa1c266e463f6c42cfe2c19c454 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Mon, 15 Aug 2022 10:23:28 -0700 Subject: [PATCH 50/59] Update valet-audit-lab.md --- jenkins/valet-audit-lab.md | 30 +++++++++++++++++------------- 1 file changed, 17 insertions(+), 13 deletions(-) diff --git a/jenkins/valet-audit-lab.md b/jenkins/valet-audit-lab.md index 29b77e8..6afb0a0 100644 --- a/jenkins/valet-audit-lab.md +++ b/jenkins/valet-audit-lab.md @@ -37,7 +37,7 @@ gh valet audit jenkins --output-dir tmp/audit ### Example -valet-audit-1 +valet-audit-1 ## View audit output @@ -50,7 +50,7 @@ The audit summary, logs, config files, jenkinsfiles, and transformed Actions Wor ### Example -valet-audit-2 +valet-audit-2 ## Review the pipelines @@ -58,13 +58,13 @@ The audit summary, logs, config files, jenkinsfiles, and transformed Actions Wor The audit summary starts by giving a summary of the types of pipelines that were extracted from Jenkins. -- It shows that there are a total of 4 pipelines extracted. +- It shows that there are a total of 7 pipelines extracted. -- 50% pipelines were successful. This means that Valet knew how to map all the constructs of the Jenkins pipeline to a GitHub Actions equivalent. All of the build pluggins and triggers that are referenced were all successfully converted into a GitHub Actions equivalent. +- 42% pipelines were successful. This means that Valet knew how to map all the constructs of the Jenkins pipeline to a GitHub Actions equivalent. All of the build pluggins and triggers that are referenced were all successfully converted into a GitHub Actions equivalent. -- 50% pipelines were partially successful. This means that Valet knew how to map all the constructs of the Jenkins pipeline but there may be a plugin that was referenced that Valet wasn't able to automatically map to a Github Actions equivalent. +- 42% pipelines were partially successful. This means that Valet knew how to map all the constructs of the Jenkins pipeline but there may be a plugin that was referenced that Valet wasn't able to automatically map to a Github Actions equivalent. -- 0% of these pipelines are unsupported. If there were any that would fall under this category, that would mean that those pipelines were using a pipeline type that is fundamentally not supported by Valet. If a Jenkins instance had any scripted pipelines they would appear here. +- 1% of these pipelines are unsupported. This means that the pipeline type is fundamentally unsupported by Valet. This is most likely a Jenkins scripted pipeline. - 0% of these fail altogether. If there were any pipelines that would fall under this category, that would mean that those pipelines were misconfigured or there was an issue with Valet. @@ -72,15 +72,15 @@ Under the `Job types` section, we can see that the `audit` command is able to su #### Example -valet-audit-3 +valet-audit-3 ### Build steps Under the `Build steps` section we can see a breakdown of the build steps that were used in these pipelines. -- Supported: 7/9 discrete build steps are considered known by Valet. When Valet encounters a build step of this type, it knows exactly how to map that into a GitHub Actions equivalent. -- Unknown: 2/9 discrete build steps are considered unknown by Valet. When Valet enounters a build step of this type, it does not yet know to map this automatically to a GitHub Action equivalent. -- Unsupported: There are currently no build steps that are unsupported so this category is not shown. If there were it would mean one of three things: +- Supported: 12/16 discrete build steps are considered known by Valet. When Valet encounters a build step of this type, it knows exactly how to map that into a GitHub Actions equivalent. +- Unknown: 2/16 discrete build steps are considered unknown by Valet. When Valet enounters a build step of this type, it does not yet know to map this automatically to a GitHub Action equivalent. +- Unsupported: 1/16 discrete build steps are considered unsupported by Valet. This could mean one of three things: 1. The way that plugin was configured for a given job is unsupported. 2. The plugin itself is fundamentally not supported in GitHub Actions. 3. It's supported by default in GitHub Actions. @@ -91,7 +91,7 @@ For example, if you are doing things like setting up the allow list of third-par #### Example -valet-audit-4 +valet-audit-4 ### Trigger, Environment, Other @@ -99,12 +99,16 @@ Similar to `Build steps`, there are `Trigger`, `Environment`, and a catch all `O ### Example -valet-audit-5 +valet-audit-5 ### Manual Tasks Under the Manual task section you will find a list of all the manual tasks that the pipelines would surface in a migration. Manual tasks are Valet's way of indicating tasks a user needs to do in order for a pipeline to be functional, such as adding `secrets`, or setting up a `self-hosted` runner. We will see how these manual tasks appear on a pull request when we do a migration in a lab later on. +### Example + +valet-audit-5 + ### Files At the end of the Audit Summary page you will find a list of all of the files that were written to disk. Generally, for any given pipeline, you’ll find 2 or 3 associated files. In these files are the actual converted GitHub Actions workflows. @@ -113,7 +117,7 @@ In addition, you’ll see a file that shows the raw JSON data that we pull from #### Example -valet-audit-6 +valet-audit-6 ### Next Lab From c56f40a219f25dc367697d2b8f423a802923f2cf Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Mon, 15 Aug 2022 12:22:01 -0700 Subject: [PATCH 51/59] Update jenkins/valet-audit-lab.md Co-authored-by: j-dunham --- jenkins/valet-audit-lab.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/valet-audit-lab.md b/jenkins/valet-audit-lab.md index 6afb0a0..229c722 100644 --- a/jenkins/valet-audit-lab.md +++ b/jenkins/valet-audit-lab.md @@ -21,7 +21,7 @@ By the end of this lab you will have performed an audit on the demo Jenkins inst We will be performing an audit against a preconfigured Jenkins instance. Before running the command we need to collect some information: - 1. Do we want to audit the entire Jenkins instance, or just a single folder? __In this example we will be auditing the entire Jenkins instance, but in the future if you wanted to configure a specific folder to be audited add the `-f flag to the audit command__ + 1. Do we want to audit the entire Jenkins instance, or just a single folder? __In this example we will be auditing the entire Jenkins instance, but in the future if you wanted to configure a specific folder to be audited add the `-f ` flag to the audit command__ 2. Where do we want to store the result? __./tmp/audit. This can be any valid path on the system. In the case of codespaces it is generally best to use `./tmp/SOME_DIRECTORY_HERE` so the files show in explorer__ ### Steps From 96bd95623a73c53252200ba8b3defe2bb9845881 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Mon, 15 Aug 2022 12:22:32 -0700 Subject: [PATCH 52/59] Update jenkins/valet-audit-lab.md Co-authored-by: j-dunham --- jenkins/valet-audit-lab.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/valet-audit-lab.md b/jenkins/valet-audit-lab.md index 229c722..7795954 100644 --- a/jenkins/valet-audit-lab.md +++ b/jenkins/valet-audit-lab.md @@ -64,7 +64,7 @@ The audit summary starts by giving a summary of the types of pipelines that were - 42% pipelines were partially successful. This means that Valet knew how to map all the constructs of the Jenkins pipeline but there may be a plugin that was referenced that Valet wasn't able to automatically map to a Github Actions equivalent. -- 1% of these pipelines are unsupported. This means that the pipeline type is fundamentally unsupported by Valet. This is most likely a Jenkins scripted pipeline. +- 1% of these pipelines were unsupported. This means that the pipeline type is fundamentally unsupported by Valet. This is most likely a Jenkins scripted pipeline. - 0% of these fail altogether. If there were any pipelines that would fall under this category, that would mean that those pipelines were misconfigured or there was an issue with Valet. From 1c02d4fc9c69981782d0bbac3588bdceed4ee72e Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Mon, 15 Aug 2022 12:22:41 -0700 Subject: [PATCH 53/59] Update jenkins/valet-audit-lab.md Co-authored-by: j-dunham --- jenkins/valet-audit-lab.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/valet-audit-lab.md b/jenkins/valet-audit-lab.md index 7795954..797992f 100644 --- a/jenkins/valet-audit-lab.md +++ b/jenkins/valet-audit-lab.md @@ -46,7 +46,7 @@ The audit summary, logs, config files, jenkinsfiles, and transformed Actions Wor 1. Under the `audit` folder find the `audit_summary.md` 2. Right-click the `audit_summary.md` file and select `Open Preview` 3. The file contains details about your current pipelines and what can be migrated 100% automatically vs. what will need some manual intervention or aren't supported by GitHub Actions. -4. Review the file, it should like like the image below: +4. Review the file, it should look like the image below: ### Example From bf3ac743af2ab2685661e656d118e35f9db79406 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Mon, 15 Aug 2022 12:22:55 -0700 Subject: [PATCH 54/59] Update jenkins/valet-audit-lab.md Co-authored-by: j-dunham --- jenkins/valet-audit-lab.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/valet-audit-lab.md b/jenkins/valet-audit-lab.md index 797992f..0a016db 100644 --- a/jenkins/valet-audit-lab.md +++ b/jenkins/valet-audit-lab.md @@ -15,7 +15,7 @@ By the end of this lab you will have performed an audit on the demo Jenkins inst ## Prerequisites 1. Follow all steps [here](../jenkins#readme) to set up your environment. -2. Follow all steps [here](../jenkins#valet_configure_lab) to configure Valet. +2. Follow all steps [here](../jenkins#valet-configure-lab) to configure Valet. ## Perform an audit From c83ef24ac37bc82cc0c78d32df8bb82ee291142f Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Mon, 15 Aug 2022 12:23:02 -0700 Subject: [PATCH 55/59] Update jenkins/valet-audit-lab.md Co-authored-by: j-dunham --- jenkins/valet-audit-lab.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/valet-audit-lab.md b/jenkins/valet-audit-lab.md index 0a016db..3a079b1 100644 --- a/jenkins/valet-audit-lab.md +++ b/jenkins/valet-audit-lab.md @@ -27,7 +27,7 @@ We will be performing an audit against a preconfigured Jenkins instance. Before ### Steps 1. Navigate to the codespace terminal. -2. Now, from root dirrectory, run the following Valet audit command: +2. Now, from root directory, run the following Valet audit command: ``` gh valet audit jenkins --output-dir tmp/audit From a8131c7c90b126fcd91d8b66056e3aeb00661e4c Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Mon, 15 Aug 2022 12:23:15 -0700 Subject: [PATCH 56/59] Update jenkins/valet-audit-lab.md Co-authored-by: j-dunham --- jenkins/valet-audit-lab.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/valet-audit-lab.md b/jenkins/valet-audit-lab.md index 3a079b1..8cb5571 100644 --- a/jenkins/valet-audit-lab.md +++ b/jenkins/valet-audit-lab.md @@ -33,7 +33,7 @@ We will be performing an audit against a preconfigured Jenkins instance. Before gh valet audit jenkins --output-dir tmp/audit ``` -3. Valet displays green log files to indicate a successful audit +3. Valet will log the output files in green when the audit is successful ### Example From 35de427a22f5db5d138e4f681cc8efc653060592 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Mon, 15 Aug 2022 12:24:58 -0700 Subject: [PATCH 57/59] Update valet-audit-lab.md --- jenkins/valet-audit-lab.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/valet-audit-lab.md b/jenkins/valet-audit-lab.md index 8cb5571..0e8f800 100644 --- a/jenkins/valet-audit-lab.md +++ b/jenkins/valet-audit-lab.md @@ -79,7 +79,7 @@ Under the `Job types` section, we can see that the `audit` command is able to su Under the `Build steps` section we can see a breakdown of the build steps that were used in these pipelines. - Supported: 12/16 discrete build steps are considered known by Valet. When Valet encounters a build step of this type, it knows exactly how to map that into a GitHub Actions equivalent. -- Unknown: 2/16 discrete build steps are considered unknown by Valet. When Valet enounters a build step of this type, it does not yet know to map this automatically to a GitHub Action equivalent. +- Unknown: 3/16 discrete build steps are considered unknown by Valet. When Valet enounters a build step of this type, it does not yet know to map this automatically to a GitHub Action equivalent. - Unsupported: 1/16 discrete build steps are considered unsupported by Valet. This could mean one of three things: 1. The way that plugin was configured for a given job is unsupported. 2. The plugin itself is fundamentally not supported in GitHub Actions. From 669c3183e5a6e4c2592307e50c19dd797463c696 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Mon, 15 Aug 2022 13:00:41 -0700 Subject: [PATCH 58/59] Update valet-audit-lab.md --- jenkins/valet-audit-lab.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jenkins/valet-audit-lab.md b/jenkins/valet-audit-lab.md index 0e8f800..a015280 100644 --- a/jenkins/valet-audit-lab.md +++ b/jenkins/valet-audit-lab.md @@ -99,7 +99,7 @@ Similar to `Build steps`, there are `Trigger`, `Environment`, and a catch all `O ### Example -valet-audit-5 +valet-audit-5 ### Manual Tasks @@ -107,7 +107,7 @@ Under the Manual task section you will find a list of all the manual tasks that ### Example -valet-audit-5 +valet-audit-5 ### Files @@ -117,7 +117,7 @@ In addition, you’ll see a file that shows the raw JSON data that we pull from #### Example -valet-audit-6 +valet-audit-6 ### Next Lab From 7cfcdb7a125607aa444c43d39e49bb9561c71fe1 Mon Sep 17 00:00:00 2001 From: Begona Guereca Date: Mon, 15 Aug 2022 13:05:16 -0700 Subject: [PATCH 59/59] Create valet-audit-lab.md --- jenkins/valet-audit-lab.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jenkins/valet-audit-lab.md b/jenkins/valet-audit-lab.md index a015280..cad80e1 100644 --- a/jenkins/valet-audit-lab.md +++ b/jenkins/valet-audit-lab.md @@ -72,7 +72,7 @@ Under the `Job types` section, we can see that the `audit` command is able to su #### Example -valet-audit-3 +valet-audit-3 ### Build steps @@ -107,7 +107,7 @@ Under the Manual task section you will find a list of all the manual tasks that ### Example -valet-audit-5 +valet-audit-5 ### Files