.\createarchive.ps1
Creates an archive of the files that changed between HEAD and HEAD^
.\createarchive.ps1 e39eef
Creates an archive of the files that changed between e39eef and e39eef^
| # Variables | |
| $TargetFolderName = "ProviderSolution" | |
| $ProjectFilePath = "C:\temp\SSIS\TestSSISSolution\TestSSISProject\bin\Development\TestSSISProject.ispac" | |
| $ProjectName = "TestSSISProject" | |
| # Get the Integration Services catalog | |
| $ProviderCatalog = Get-Item SQLSERVER:\SSIS\localhost\SQL2017\Catalogs\SSISDB\ | |
| # Create the target folder | |
| New-Object "Microsoft.SqlServer.Management.IntegrationServices.CatalogFolder" ($ProviderCatalog, |
| #!groovy | |
| import groovy.json.JsonOutput | |
| import groovy.json.JsonSlurper | |
| def label = "mypod-${UUID.randomUUID().toString()}" | |
| podTemplate(label: label, yaml: """ | |
| spec: | |
| containers: | |
| - name: mvn | |
| image: maven:3.3.9-jdk-8-alpine |