summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/openbsd.yml38
1 files changed, 0 insertions, 38 deletions
diff --git a/.github/workflows/openbsd.yml b/.github/workflows/openbsd.yml
deleted file mode 100644
index 7d757cb68..000000000
--- a/.github/workflows/openbsd.yml
+++ /dev/null
@@ -1,38 +0,0 @@
-name: OpenBSD
-
-on:
- pull_request:
- push:
- release:
- types: [published]
-
-jobs:
- build:
-
- runs-on: macos-12
-
- concurrency:
- group: ${{ github.ref }}-${{ github.base_ref }}-${{ github.head_ref }}-OpenBSD
- cancel-in-progress: true
- steps:
- - uses: actions/checkout@v2
- with:
- submodules: true
-
- - name: Tests
- uses: vmactions/openbsd-vm@v0
- with:
- usesh: true
- mem: 4096
- copyback: false
- prepare: pkg_add curl unzip gmake llvm gsed bash perl5
- run: |
- ./configure
- gmake -j4
- gmake install
- export XMAKE_ROOT=y
- xrepo --version
- xmake l os.meminfo
- xmake lua -v -D tests/run.lua
-
-