summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorruki <[email protected]>2021-01-21 22:32:53 +0800
committerruki <[email protected]>2021-01-21 22:32:53 +0800
commit2dc22b47699190241a63e5154a389b26b4ac38f3 (patch)
tree7db3fd507733a958e99b04709700b40bf04fe847 /.github/workflows
parent2f6e5e72cb9527bad1b417ef9c48ea0ecfae53b7 (diff)
add freebsd ci
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/freebsd.yml31
1 files changed, 31 insertions, 0 deletions
diff --git a/.github/workflows/freebsd.yml b/.github/workflows/freebsd.yml
new file mode 100644
index 000000000..fdfad7765
--- /dev/null
+++ b/.github/workflows/freebsd.yml
@@ -0,0 +1,31 @@
+name: FreeBSD
+
+on:
+ pull_request:
+ push:
+ release:
+ types: [published]
+
+jobs:
+ build:
+
+ runs-on: macos-latest
+
+ steps:
+ - uses: actions/checkout@v2
+ with:
+ submodules: true
+
+ - name: tests
+ uses: vmactions/[email protected]
+ with:
+ usesh: true
+ prepare: pkg install -y curl unzip gmake llvm gsed bash perl5
+ run: |
+ gmake -j4
+ gmake install
+ export XMAKE_ROOT=y
+ xrepo --version
+ xmake lua -v -D tests/run.lua
+
+