-
-
Notifications
You must be signed in to change notification settings - Fork 142
67 lines (56 loc) · 1.71 KB
/
tests.yml
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: Tests
on:
push:
branches:
- master
pull_request:
jobs:
build:
name: Build
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go environment
uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Setup VS environment
shell: cmd
run: |
for /f "usebackq delims=" %%i in (`vswhere.exe -latest -property installationPath`) do echo %%i\VC\Auxiliary\Build>>%GITHUB_PATH%
- name: Add commit hash to version number
shell: powershell
if: github.event_name == 'pull_request'
env:
HEAD_SHA: ${{ github.event.pull_request.head.sha }}
run: |
$versionFile = ".\pkg\version\version.go"
$rev = [UInt16]("0x" + $env:HEAD_SHA.Substring(0, 4))
$version = (findstr /r "Number.*=.*[0-9.]*" $versionFile | Select-Object -First 1 | ConvertFrom-StringData).Get_Item("Number")
$newVersion = $version.Substring(0, $version.Length - 1) + ".$rev" + '"'
(Get-Content $versionFile).Replace($version, $newVersion) | Set-Content $versionFile
- name: Build
shell: cmd
run: build.bat
- name: Upload
uses: actions/upload-artifact@v4
if: github.event_name == 'pull_request'
with:
name: build
path: |
bin/*.exe
bin/*.zip
retention-days: 5
test:
name: Go
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go environment
uses: actions/setup-go@v5
with:
go-version: '1.23'
- name: Test
run: go test -v ./...