Skip to content

Commit

Permalink
Move build-appx under buid-service.
Browse files Browse the repository at this point in the history
Fail fast!
  • Loading branch information
EduardGomezEscandell committed Sep 21, 2023
1 parent 7260da5 commit 0cc9b40
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/qa-azure.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,19 +67,13 @@ jobs:
$pwd = ConvertTo-SecureString '${{ secrets.CERTIFICATE_PASSWORD }}' -AsPlainText -Force
Import-PfxCertificate -Password $pwd -CertStoreLocation Cert:LocalMachine\Trust -FilePath certificate\certificate.pfx
Import-PfxCertificate -Password $pwd -CertStoreLocation Cert:CurrentUser\My -FilePath certificate\certificate.pfx
- name: Build Appx
shell: powershell
run: |
New-Item -ItemType Directory "ci-build/windows-agent"
Get-AppxPackage -Name "CanonicalGroupLimited.UbuntuProForWindows" | Remove-AppxPackage
.\tools\build\build-appx.ps1 -OutputDir "ci-build/windows-agent" -SkipInstall
- name: Build WSL-Pro-Service
shell: powershell
run: |
Copy-Item -Path "${HOME}/.gitconfig" -Destination "\\wsl$\Ubuntu-Preview\etc\gitconfig"
Write-Output "::group::Point internal dependencies to this branch"
$want_version = "${{ github.ref_name }}"
$want_version = "${{ github.sha }}".Substring(0, 12)
$dependencies = $(go mod edit -json | jq -r @"
.Require[]
| select(.Path | startswith("github.com/${{ github.repository }}"))
Expand All @@ -92,6 +86,12 @@ jobs:
New-Item -ItemType Directory "ci-build/wsl-pro-service"
.\tools\build\build-deb.ps1 -OutputDir "ci-build/wsl-pro-service"
- name: Build Appx
shell: powershell
run: |
New-Item -ItemType Directory "ci-build/windows-agent"
Get-AppxPackage -Name "CanonicalGroupLimited.UbuntuProForWindows" | Remove-AppxPackage
.\tools\build\build-appx.ps1 -OutputDir "ci-build/windows-agent" -SkipInstall
- name: Test
shell: powershell
env:
Expand Down

0 comments on commit 0cc9b40

Please sign in to comment.