You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
name: FreeBSD
|
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
branches:
|
|
|
|
- dev
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
os: [macOS-12]
|
|
|
|
kind: [static, shared]
|
|
|
|
|
|
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
|
|
|
|
concurrency:
|
|
|
|
group: ${{ github.ref }}-${{ github.base_ref }}-${{ github.head_ref }}-FreeBSD-${{ matrix.kind }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v1
|
|
|
|
|
|
|
|
- name: Tests
|
|
|
|
uses: vmactions/freebsd-vm@v0.2.0
|
|
|
|
with:
|
|
|
|
usesh: true
|
|
|
|
mem: 4096
|
|
|
|
copyback: false
|
|
|
|
prepare: pkg install -y git curl unzip gmake llvm gsed bash perl5 openssl
|
|
|
|
run: |
|
|
|
|
git clone --recurse-submodules https://github.com/xmake-io/xmake.git /tmp/xmake -b dev
|
|
|
|
cd /tmp/xmake
|
|
|
|
gmake -j4
|
|
|
|
gmake install
|
|
|
|
export XMAKE_ROOT=y
|
|
|
|
cd -
|
|
|
|
git config --global --add safe.directory /Users/runner/work/xmake-repo/xmake-repo
|
|
|
|
xmake l ./scripts/test.lua -D -k ${{ matrix.kind }}
|
|
|
|
|
|
|
|
|