-
Notifications
You must be signed in to change notification settings - Fork 6
55 lines (53 loc) · 1.46 KB
/
ci-xmake-linux.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
name: Build on linux
on:
push:
branches: [ main ]
paths:
- 'Kernel/**'
- 'System/**'
- 'tests/**'
- '.github/workflows/ci-xmake-linux.yml'
- 'xmake.lua'
pull_request:
branches: [ main ]
paths:
- 'Kernel/**'
- 'System/**'
- 'tests/**'
- '.github/workflows/ci-xmake-linux.yml'
- 'xmake.lua'
workflow_dispatch:
jobs:
linuxbuild:
runs-on: ubuntu-22.04
steps:
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y gcc cmake
# 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.1
- 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 run --yes -vD --group=tests