mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-28 11:47:48 +02:00
18 lines
394 B
YAML
18 lines
394 B
YAML
name: Build on FreeBSD
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: macos-latest
|
|
name: A job to run test FreeBSD
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- name: Test in FreeBSD
|
|
id: test
|
|
uses: vmactions/freebsd-vm@v0.0.9
|
|
with:
|
|
usesh: true
|
|
prepare: pkg install -y make boost-libs ssl miniupnpc
|
|
run: |
|
|
make USE_UPNP=yes -j3
|