diff options
| author | ruki <[email protected]> | 2021-01-21 22:32:53 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2021-01-21 22:32:53 +0800 |
| commit | 2dc22b47699190241a63e5154a389b26b4ac38f3 (patch) | |
| tree | 7db3fd507733a958e99b04709700b40bf04fe847 /.github/workflows | |
| parent | 2f6e5e72cb9527bad1b417ef9c48ea0ecfae53b7 (diff) | |
add freebsd ci
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/freebsd.yml | 31 |
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 + + |
