-
Notifications
You must be signed in to change notification settings - Fork 6
62 lines (55 loc) · 1.63 KB
/
ci-xmake-macos.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
name: Build and Test on macOS
on:
push:
branches: [ main ]
paths:
- 'Kernel/**'
- 'System/**'
- 'lolly/**'
- 'tests/**'
- '.github/workflows/ci-xmake-macos.yml'
- 'xmake.lua'
pull_request:
branches: [ main ]
paths:
- 'Kernel/**'
- 'System/**'
- 'lolly/**'
- 'tests/**'
- '.github/workflows/ci-xmake-macos.yml'
- 'xmake.lua'
jobs:
macosbuild:
runs-on: macos-11
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- name: cache xmake
uses: actions/cache@v2
with:
path: |
${{github.workspace}}/build/.build_cache
/Users/runner/.xmake
key: ${{ runner.os }}-xmake-${{ hashFiles('**/xmake.lua') }}
- name: set XMAKE_GLOBALDIR
run: echo "XMAKE_GLOBALDIR=${{ runner.workspace }}/xmake-global" >> $GITHUB_ENV
- uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: v2.8.3
actions-cache-folder: '.xmake-cache'
- name: xmake repo --update
run: xmake repo --update
- name: cache
uses: actions/cache@v3
with:
path: |
${{ env.XMAKE_GLOBALDIR }}/.xmake/packages
${{ runner.workspace }}/build/.build_cache
key: ${{ runner.os }}-xmake-qt${{ matrix.qt_ver }}-${{ hashFiles('**/xmake.lua') }}
- name: config
run: xmake config --policies=build.ccache -o ${{ runner.workspace }}/build --yes -vD
- name: build
run: xmake build --yes -vD
- name: test
run: xmake run --yes -vD --diagnosis --group=tests