package An official xmake package repository https://xrepo.xmake.io/
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.

38 lines
927 B

name: Monkey (FreeBSD)
on:
schedule: # execute every 24 hours
- cron: "0 */24 * * *"
jobs:
build:
strategy:
matrix:
2 years ago
os: [macOS-12]
kind: [static, shared]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v1
- name: Tests
2 years ago
uses: vmactions/freebsd-vm@v0
with:
usesh: true
mem: 4096
copyback: false
prepare: pkg install -y git curl unzip gmake llvm gsed bash perl5
run: |
git clone --recurse-submodules https://github.com/xmake-io/xmake.git /tmp/xmake -b dev
cd /tmp/xmake
2 years ago
./configure
gmake -j4
gmake install
export XMAKE_ROOT=y
git clone https://github.com/xmake-io/xmake-repo.git /tmp/xmake-repo -b dev --depth 2
cd /tmp/xmake-repo
xmake l ./scripts/monkey.lua -D -k ${{ matrix.kind }}