mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-22 16:13:31 +01:00
58 lines
1.3 KiB
YAML
58 lines
1.3 KiB
YAML
name: Test Code Windows
|
|
on: [push,pull_request]
|
|
jobs:
|
|
pre:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- run: bash -x wireguard_nt.sh
|
|
working-directory: client
|
|
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
name: syso
|
|
path: client/*.syso
|
|
retention-days: 1
|
|
|
|
test:
|
|
needs: pre
|
|
strategy:
|
|
matrix:
|
|
go-version: [1.18.x]
|
|
runs-on: windows-latest
|
|
steps:
|
|
- name: disable defender
|
|
run: Set-MpPreference -DisableRealtimeMonitoring $true
|
|
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Install Go
|
|
uses: actions/setup-go@v2
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
|
|
- uses: actions/cache@v2
|
|
with:
|
|
path: |
|
|
%LocalAppData%\go-build
|
|
~/go/pkg/mod
|
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-go-
|
|
|
|
- name: enable defender
|
|
run: Set-MpPreference -DisableRealtimeMonitoring $false
|
|
|
|
- uses: actions/download-artifact@v2
|
|
with:
|
|
name: syso
|
|
path: iface\
|
|
|
|
# - name: Install modules
|
|
# run: go mod tidy
|
|
|
|
- name: Test
|
|
run: go test -tags=load_wgnt_from_rsrc -timeout 5m -p 1 ./...
|