Skip to content

Commit e86df0d

Browse files
2 parents 5cdf7a6 + 4389148 commit e86df0d

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/xmake.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Build
2+
3+
on:
4+
push:
5+
branches: [ "master" ]
6+
pull_request:
7+
branches: [ "master" ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: windows-latest
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
with:
17+
submodules: recursive
18+
- uses: xmake-io/github-action-setup-xmake@v1
19+
with:
20+
xmake-version: latest
21+
actions-cache-folder: '.xmake-cache'
22+
actions-cache-key: 'ci'
23+
- name: build
24+
run: xmake -y --verbose
25+
- name: Upload a Build Artifact
26+
uses: actions/[email protected]
27+
with:
28+
path: ./build/windows/

0 commit comments

Comments
 (0)