mirror of
https://github.com/netbirdio/netbird.git
synced 2024-11-07 08:44:07 +01:00
fd67892cb4
Refactor the flat code structure
47 lines
1.6 KiB
YAML
47 lines
1.6 KiB
YAML
|
|
name: Test Code FreeBSD
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.head_ref || github.actor_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Test in FreeBSD
|
|
id: test
|
|
uses: vmactions/freebsd-vm@v1
|
|
with:
|
|
usesh: true
|
|
copyback: false
|
|
release: "14.1"
|
|
prepare: |
|
|
pkg install -y go
|
|
|
|
# -x - to print all executed commands
|
|
# -e - to faile on first error
|
|
run: |
|
|
set -e -x
|
|
time go build -o netbird client/main.go
|
|
# check all component except management, since we do not support management server on freebsd
|
|
time go test -timeout 1m -failfast ./base62/...
|
|
# NOTE: without -p1 `client/internal/dns` will fail becasue of `listen udp4 :33100: bind: address already in use`
|
|
time go test -timeout 8m -failfast -p 1 ./client/...
|
|
time go test -timeout 1m -failfast ./dns/...
|
|
time go test -timeout 1m -failfast ./encryption/...
|
|
time go test -timeout 1m -failfast ./formatter/...
|
|
time go test -timeout 1m -failfast ./client/iface/...
|
|
time go test -timeout 1m -failfast ./route/...
|
|
time go test -timeout 1m -failfast ./sharedsock/...
|
|
time go test -timeout 1m -failfast ./signal/...
|
|
time go test -timeout 1m -failfast ./util/...
|
|
time go test -timeout 1m -failfast ./version/...
|