Skip to content

Run End-To-End tests in our CI #63

Run End-To-End tests in our CI

Run End-To-End tests in our CI #63

Workflow file for this run

name: QA on Azure
# QA checks on Azure, allowing the use of a real WSL back-en
concurrency: azure-vm
on:
pull_request:
workflow_dispatch:
push:
branches: [main]
env:
az_name: wsl-ci-3
az_resource_group: wsl
jobs:
vm-setup:
name: Set up Azure VM
runs-on: [self-hosted, do-not-use]
steps:
- name: Azure login
uses: azure/login@v1
with:
creds: ${{ secrets.AZURE_VM_CREDS }}
- name: Start the Runner
shell: bash
run: |
az vm start --name ${{ env.az_name }} --resource-group ${{ env.az_resource_group }}
qa:
name: Run end-to-end tests on the Azure VM
runs-on: [self-hosted, Windows]
needs: vm-setup
steps:
- name: Set up git
uses: canonical/ubuntu-pro-for-windows/.github/actions/setup-git@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Ubuntu
uses: Ubuntu/WSL/.github/actions/wsl-install@main
with:
distro: "Ubuntu"
- name: Set up Go
# actions/setup-go is broken
shell: powershell
run: |
winget install GoLang.Go
Exit(0)
- name: Download Appx
uses: dawidd6/action-download-artifact@v2
with:
workflow: qa.yaml
workflow_conclusion: success
name: UbuntuProForWindows+.*
name_is_regexp: true
path: ci-artifacts
- name: Download Wsl-Pro-Service
uses: dawidd6/action-download-artifact@v2
with:
workflow: qa.yaml
workflow_conclusion: success
name: wsl-pro-service_.*
name_is_regexp: true
path: ci-artifacts
- name: Set up artifacts
shell: powershell
working-directory: ci-artifacts
run: |
tree /F
Write-Output "::group::Set up AppxPackage"
Get-AppxPackage -Name "CanonicalGroupLimited.UbuntuProForWindows" | Remove-AppxPackage -ErrorAction Ignore
New-Item -Name "windows-agent" -ItemType Directory
Move-Item -Path "UbuntuProForWindows_*/UbuntuProForWindows_*/*.msixbundle" -Destination "windows-agent/"
Move-Item -Path "UbuntuProForWindows_*/UbuntuProForWindows_*/*.cert" -Destination "windows-agent/"
Remove-Item -Recurse "UbuntuProForWindows_*/"
tree /F
$cert = (Get-ChildItem windows-agent/UbuntuProForWindows_*.cer)
$pwd = ConvertTo-SecureString '${{ secrets.CERTIFICATE_PASSWORD }}' -AsPlainText -Force
Import-PfxCertificate -Password $pwd -CertStoreLocation Cert:LocalMachine\Trust -FilePath "${cert}"
Write-Output "::endgroup::"
Write-Output "::group::Set up WSL Pro Service"
Rename-Item -Path "wsl-pro-service_*/" -NewName "wsl-pro-service"
Write-Output "::endgroup::"
tree /F
- name: Test
shell: powershell
env:
GIT_TERMINAL_PROMPT: "0"
UP4W_TEST_OVERRIDE_DESTRUCTIVE_CHECKS: "1"
UP4W_TEST_BUILD_PATH: "ci-artifacts"
UP4W_TEST_PRO_TOKEN: "${{ secrets.UBUNTU_PRO_TOKEN }}"
run: |
go env -w "GOPRIVATE=github.com/${{ github.repository }}"
go test .\end-to-end -shuffle=on -timeout 20m
if ( "$LastExitCode" -ne "0" ) { Exit(1) }
- name: Clean up
if: always()
shell: powershell
run: |
# Clean up artifacts
# Remove .gitconfig so that the github URL overrides do not stack
Remove-Item -Recurse -Path "${HOME}\.gitconfig" -ErrorAction Ignore
# Uninstall Appx
Get-AppxPackage -Name "CanonicalGroupLimited.UbuntuProForWindows" | Remove-AppxPackage -ErrorAction Ignore
stop-vm:
name: Clean up the Azure VM
runs-on: [self-hosted, do-not-use]
needs: [vm-setup, qa]
if: always()
steps:
- name: Azure login
uses: azure/login@v1
with:
creds: ${{ secrets.AZURE_VM_CREDS }}
- name: Deallocate the Runner
shell: bash
run: |
az vm deallocate --name ${{ env.az_name }} --resource-group ${{ env.az_resource_group }}