summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorneil <github@neilpang.com>2022-08-06 15:05:07 +0800
committerNicolas Viennot <nicolas@viennot.biz>2022-08-06 21:30:02 -0400
commitac919516f4f1b10ec928e20b3a5034d18f609d68 (patch)
tree6bc1b09df321d86bfb8f52543db3d760e757ce64
parent6cb27ead4e77ba8cc15982d909fe57c074239434 (diff)
add DragonflyBSD by https://github.com/vmactions/dragonflybsd-vmHEADmaster
-rw-r--r--.github/workflows/DragonflyBSD.yml41
1 files changed, 41 insertions, 0 deletions
diff --git a/.github/workflows/DragonflyBSD.yml b/.github/workflows/DragonflyBSD.yml
new file mode 100644
index 00000000..f014da9b
--- /dev/null
+++ b/.github/workflows/DragonflyBSD.yml
@@ -0,0 +1,41 @@
+name: DragonflyBSD
+on:
+ push:
+ branches:
+ - '*'
+ paths:
+ - '**.c'
+ - '**.h'
+ - 'compat/*'
+ - '.github/workflows/DragonflyBSD.yml'
+ pull_request:
+ branches:
+ - '*'
+ paths:
+ - '**.c'
+ - '**.h'
+ - 'compat/*'
+ - '.github/workflows/DragonflyBSD.yml'
+
+
+
+jobs:
+ DragonflyBSD:
+ runs-on: macos-12
+ steps:
+ - uses: actions/checkout@v2
+ - uses: vmactions/dragonflybsd-vm@v0
+ with:
+ prepare: |
+ pkg install -y automake autoconf libtool pkgconf libevent msgpack libssh gsed
+ usesh: true
+ run: |
+ gsed -i "s/OK/0/g" tty-term.c
+ autoupdate
+ ./autogen.sh
+ ./configure
+ make
+ make install
+
+
+