generated from YimMenu/YimMenuV2
-
Notifications
You must be signed in to change notification settings - Fork 34
39 lines (30 loc) · 1006 Bytes
/
ci.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
name: CI
on: [ push, pull_request ]
jobs:
ci:
runs-on: [ self-hosted, Windows ]
name: CI
steps:
- uses: actions/checkout@v3
- name: Check CMake version
run: cmake --version
- name: Setup MSVC environment
uses: ilammy/msvc-dev-cmd@v1
with:
arch: amd64
- name: Generate CMake project
run: cmake -D CMAKE_BUILD_TYPE=Release -S. -Bbuild -G Ninja
- name: Build 64bit release DLL
run: cmake --build ./build --config Release --target HorseMenu --
- name: Check if DLL got built
run: if (-Not (Test-Path -path "build/HorseMenu.dll")) {throw 1}
- name: Rename DLL to HorseMenu-dev-{GITHUB_SHA}.dll
run: |
del HorseMenu-dev-*.dll
ren HorseMenu.dll HorseMenu-dev-${{github.sha}}.dll
working-directory: build/
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: binary
path: build/HorseMenu-dev-*.dll