-
Notifications
You must be signed in to change notification settings - Fork 35
57 lines (54 loc) · 1.34 KB
/
ci-windows.yml
File metadata and controls
57 lines (54 loc) · 1.34 KB
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
name: Build on windows
on:
push:
branches: [ main ]
paths:
- 'goldfish/**'
- 'json/**'
- 'src/**'
- 'tests/**'
- 'tools/**'
- 'xmake/**'
- 'xmake.lua'
- '.github/workflows/ci-windows.yml'
pull_request:
branches: [ main ]
paths:
- 'goldfish/**'
- 'json/**'
- 'src/**'
- 'tests/**'
- 'tools/**'
- 'xmake/**'
- 'xmake.lua'
- '.github/workflows/ci-windows.yml'
workflow_dispatch:
jobs:
windowsbuild:
runs-on: windows-2025
env:
# Force xmake to a specific folder (for cache)
XMAKE_GLOBALDIR: ${{ github.workspace }}/.xmake-global
steps:
- uses: xmake-io/github-action-setup-xmake@v1
with:
xmake-version: v3.0.8
- name: update repo
run: xmake repo -u
- name: git crlf
run: git config --global core.autocrlf false
- uses: actions/checkout@v3
with:
fetch-depth: 1
- name: config
run: xmake config --yes -vD
- name: build
run: xmake build --yes -vD goldfish
- name: test tools/fmt
run: bin/gf test tools/fmt/tests
- name: test tools/doc
run: bin/gf test tools/doc/tests
- name: test tools/fix
run: bin/gf test tools/fix/tests
- name: test --all
run: bin/gf test --all