mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-06-19 13:21:37 +00:00
.github/workflows: add freebsd test github action
This commit is contained in:
parent
00540f9469
commit
6965b6ba27
1 changed files with 22 additions and 0 deletions
22
.github/workflows/freebsd.yml
vendored
Normal file
22
.github/workflows/freebsd.yml
vendored
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: FreeBSD-build
|
||||
runs-on: [self-hosted-ghr, size-l-x64]
|
||||
steps:
|
||||
- uses: actions/checkout@v6
|
||||
with:
|
||||
submodules: false
|
||||
|
||||
- name: Test in FreeBSD
|
||||
id: test
|
||||
uses: vmactions/freebsd-vm@v1
|
||||
with:
|
||||
release: "15.0"
|
||||
run: |
|
||||
freebsd-version
|
||||
uname -a
|
||||
pkg install -y go
|
||||
go run ./build/ci.go test -p 8
|
||||
Loading…
Reference in a new issue