-
Notifications
You must be signed in to change notification settings - Fork 3
67 lines (61 loc) · 1.59 KB
/
qa-azure.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
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-2
az_resource_group: wsl
jobs:
vm-setup:
name: Set up Azure VM
runs-on: ubuntu-latest
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 QA checks on the Azure VM
runs-on: self-hosted
needs: vm-setup
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up WSL
uses: Ubuntu/WSL/.github/actions/wsl-install@main
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.20"
- name: Prepare repo
shell: powershell
run: |
# Preparing repo
.\prepare-repository.ps1 --AcceptAll
- name: Test
shell: powershell
run: |
go test -shuffle=on -timeout 20m
if ( ! $? ) { Exit(1) }
stop-vm:
name: Clean up the Azure VM
runs-on: ubuntu-latest
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 }}