Skip to content

Commit

Permalink
Miscelaneous improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
EduardGomezEscandell committed Sep 18, 2023
1 parent 3d9a99a commit db39a91
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/qa-azure.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,22 +53,22 @@ jobs:
- name: Test
shell: powershell
env:
UP4W_TEST_OVERRIDE_DESTRUCTIVE_CHECKS: 1
UP4W_TEST_PRO_TOKEN: ${{ secrets.UBUNTU_PRO_TOKEN }}
UP4W_TEST_OVERRIDE_DESTRUCTIVE_CHECKS: "1"
UP4W_TEST_PRO_TOKEN: "${{ secrets.UBUNTU_PRO_TOKEN }}"
GIT_TERMINAL_PROMPT: "0"
run: |
# TODO: Move this to the setup-git action
$env:GIT_TERMINAL_PROMPT=0
go env -w "GOPRIVATE=github.com/${{ github.repository }}"
go test .\end-to-end -shuffle=on -timeout 20m
if ( $? ) { Exit(0) }
Write-Output "::group::WSL Pro Service build logs"
Get-Content ".\end-to-end\BuildWslProService.log"
Write-Output "::endgroup::"
Write-Output "::group::Windows Agent build logs"
Get-Content ".\end-to-end\BuildWindowsAgent.log"
Write-Output "::endgroup::"
if ( "$LastExitCode" -ne "0" ) { Exit(1) }
- name: Build WSL-Pro-Service log
if: failure()
shell: powershell
run: Get-Content ".\end-to-end\BuildWslProService.log"
- name: Build Appx log
if: failure()
shell: powershell
run: Get-Content ".\end-to-end\BuildWindowsAgent.log"

stop-vm:
name: Clean up the Azure VM
Expand Down

0 comments on commit db39a91

Please sign in to comment.