@@ -91,7 +91,7 @@ extends:
9191 - checkout : self
9292 - pwsh : |
9393 Write-Verbose -Verbose (Get-ChildItem '$(repoRoot)' | Out-String)
94- $packageVersion = $(repoRoot)/build .ps1 -GetPackageVersion
94+ $packageVersion = $(repoRoot)/packaging .ps1 -GetPackageVersion
9595 $vstsCommandString = "vso[task.setvariable variable=Version;isoutput=true]$packageVersion"
9696 Write-Host ("sending " + $vstsCommandString)
9797 Write-Host "##$vstsCommandString"
@@ -181,7 +181,7 @@ extends:
181181 $null = New-Item -ItemType Directory -Path "./bin/msix" -Force -ErrorAction Ignore
182182 Copy-Item "$(Pipeline.Workspace)/drop_BuildAndSign_BuildWin_x64/*.msix" ./bin/msix -Verbose
183183 Copy-Item "$(Pipeline.Workspace)/drop_BuildAndSign_BuildWin_arm64/*.msix" ./bin/msix -Verbose
184- ./build .ps1 -PackageType msixbundle
184+ ./packaging .ps1 -PackageType msixbundle
185185 Copy-Item "$(System.DefaultWorkingDirectory)/DSC/bin/*.msixbundle" "$(ob_outputDirectory)"
186186 displayName: 'Create msixbundle'
187187 condition: succeeded()
@@ -323,10 +323,10 @@ extends:
323323 $header = "Bearer $(AzToken)"
324324 $env:CARGO_REGISTRIES_POWERSHELL_TOKEN = $header
325325 $env:CARGO_REGISTRIES_POWERSHELL_CREDENTIAL_PROVIDER = 'cargo:token'
326- ./build .ps1 -Release -Architecture x86_64-unknown-linux-musl
327- ./build .ps1 -PackageType tgz -Architecture x86_64-unknown-linux-musl -Release
328- ./build .ps1 -PackageType rpm -Architecture x86_64-unknown-linux-musl -Release
329- ./build .ps1 -PackageType deb -Architecture x86_64-unknown-linux-musl -Release
326+ ./packaging .ps1 -Release -Architecture x86_64-unknown-linux-musl
327+ ./packaging .ps1 -PackageType tgz -Architecture x86_64-unknown-linux-musl -Release
328+ ./packaging .ps1 -PackageType rpm -Architecture x86_64-unknown-linux-musl -Release
329+ ./packaging .ps1 -PackageType deb -Architecture x86_64-unknown-linux-musl -Release
330330 Copy-Item ./bin/*.tar.gz "$(ob_outputDirectory)"
331331 Copy-Item ./bin/*.rpm "$(ob_outputDirectory)"
332332 Copy-Item ./bin/*.deb "$(ob_outputDirectory)"
@@ -386,10 +386,10 @@ extends:
386386 $header = "Bearer $(AzToken)"
387387 $env:CARGO_REGISTRIES_POWERSHELL_TOKEN = $header
388388 $env:CARGO_REGISTRIES_POWERSHELL_CREDENTIAL_PROVIDER = 'cargo:token'
389- ./build .ps1 -Release -Architecture aarch64-unknown-linux-musl
390- ./build .ps1 -PackageType tgz -Architecture aarch64-unknown-linux-musl -Release
391- ./build .ps1 -PackageType rpm -Architecture aarch64-unknown-linux-musl -Release
392- ./build .ps1 -PackageType deb -Architecture aarch64-unknown-linux-musl -Release
389+ ./packaging .ps1 -Release -Architecture aarch64-unknown-linux-musl
390+ ./packaging .ps1 -PackageType tgz -Architecture aarch64-unknown-linux-musl -Release
391+ ./packaging .ps1 -PackageType rpm -Architecture aarch64-unknown-linux-musl -Release
392+ ./packaging .ps1 -PackageType deb -Architecture aarch64-unknown-linux-musl -Release
393393 Copy-Item ./bin/*.tar.gz "$(ob_outputDirectory)"
394394 Copy-Item ./bin/*.rpm "$(ob_outputDirectory)"
395395 Copy-Item ./bin/*.deb "$(ob_outputDirectory)"
@@ -436,8 +436,8 @@ extends:
436436 $env:CARGO_REGISTRIES_POWERSHELL_TOKEN = $header
437437 $env:CARGO_REGISTRIES_POWERSHELL_CREDENTIAL_PROVIDER = 'cargo:token'
438438 Write-Verbose -Verbose "Building for $(buildName)"
439- ./build .ps1 -Release -Architecture $(buildName)
440- ./build .ps1 -PackageType tgz -Architecture $(buildName) -Release
439+ ./packaging .ps1 -Release -Architecture $(buildName)
440+ ./packaging .ps1 -PackageType tgz -Architecture $(buildName) -Release
441441 Copy-Item ./bin/*.tar.gz "$(ob_outputDirectory)"
442442 Write-Host "##vso[artifact.upload containerfolder=release;artifactname=release]$(ob_outputDirectory)/DSC-$(PackageVersion)-$(buildName).tar.gz"
443443 displayName: 'Build $(buildName)'
0 commit comments