-
Notifications
You must be signed in to change notification settings - Fork 6
88 lines (85 loc) · 2.37 KB
/
ci-xmake-wasm.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
name: Build on wasm
on:
push:
branches: [ main ]
paths:
- 'Kernel/**'
- 'System/**'
- 'lolly/**'
- 'tests/**'
- '.github/workflows/ci-xmake-wasm.yml'
- 'xmake.lua'
pull_request:
branches: [ main ]
paths:
- 'Kernel/**'
- 'System/**'
- 'lolly/**'
- 'tests/**'
- '.github/workflows/ci-xmake-wasm.yml'
- 'xmake.lua'
workflow_dispatch:
jobs:
linuxbuild:
runs-on: ubuntu-22.04
steps:
- uses: elves/setup-elvish@v1
with:
elvish-version: 0.19.2
- 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 }}-wasm-${{ hashFiles('**/xmake.lua') }}
- name: config
run: xmake config --yes -p wasm -vD --enable_tests=true
- name: build
run: xmake build --yes -vD
- name: test
run: elvish bin/test_wasm "tests/*"
windowsbuild:
runs-on: windows-2019
env:
# Force xmake to a specific folder (for cache)
XMAKE_GLOBALDIR: "${{ github.workspace }}\\.xmake-global"
steps:
- uses: elves/setup-elvish@v1
with:
elvish-version: 0.19.2
- uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: v2.8.7
- name: update repo
run: |
xrepo update-repo
- name: git crlf
run: git config --global core.autocrlf false
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: cache packages from xrepo
uses: actions/cache@v2
with:
path: |
${{ env.XMAKE_GLOBALDIR }}/.xmake/packages
key: ${{ runner.os }}-wasm-${{ hashFiles('**/xmake.lua') }}
- name: config
run: xmake config --yes -p wasm -vD --enable_tests=true
- name: build
run: xmake build --yes -vD
- name: test
run: elvish bin/test_wasm "tests/*"