From 95f70c3a18a7d7972ebd581e94affda87d2f47b0 Mon Sep 17 00:00:00 2001 From: Darcy Shen Date: Fri, 8 Mar 2024 22:03:16 +0800 Subject: [PATCH] ci macos --- .github/workflows/ci-macos.yml | 40 ++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 .github/workflows/ci-macos.yml diff --git a/.github/workflows/ci-macos.yml b/.github/workflows/ci-macos.yml new file mode 100644 index 0000000..5bdb32a --- /dev/null +++ b/.github/workflows/ci-macos.yml @@ -0,0 +1,40 @@ +name: CI on macOS + +on: + push: + branches: [ main ] + pull_request: + branches: [ main ] + workflow_dispatch: + +jobs: + linuxbuild: + runs-on: macos-11 + steps: + # Force xmake to a specific folder (for cache) + - name: Set xmake global dir + run: | + echo "XMAKE_GLOBALDIR=${{ runner.workspace }}/.xmake-global" >> "${{ github.env }}" + - uses: xmake-io/github-action-setup-xmake@v1 + with: + xmake-version: v2.8.7 + - name: update repo + run: xmake repo -u + - uses: actions/checkout@v3 + with: + fetch-depth: 1 + - name: cache xmake + uses: actions/cache@v2 + with: + path: | + ${{ env.XMAKE_GLOBALDIR }}/.xmake/packages + ${{ github.workspace }}/build/.build_cache + key: ${{ runner.os }}-xmake-${{ hashFiles('**/xmake.lua') }} + # Force xmake to a specific folder (for cache) + - name: config + run: xmake config --yes -vD + - name: build + run: xmake build --yes -vD + - name: test + run: xmake test +