-
Notifications
You must be signed in to change notification settings - Fork 21
59 lines (48 loc) · 1.28 KB
/
main.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
name: CMake
on: [push, pull_request]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup
uses: ilammy/[email protected]
with:
arch: x86
- name: Cache bin
id: cache-bin
uses: actions/cache@v3
with:
path: bin
key: ${{ runner.os }}-bin
- name: Create bin folder
if: steps.cache-bin.outputs.cache-hit != 'true'
run: |
mkdir bin
cd bin
cmake -G "Ninja" -DCMAKE_BUILD_TYPE=Release ../
mkdir output_III
mkdir output_VC
mkdir output_SA
- name: Compile
run: |
cd bin
ninja
cp TrilogyChaosMod.III.asi output_III/TrilogyChaosMod.III.asi
cp TrilogyChaosMod.VC.asi output_VC/TrilogyChaosMod.VC.asi
cp TrilogyChaosMod.SA.asi output_SA/TrilogyChaosMod.SA.asi
- name: Upload III
uses: actions/upload-artifact@v1
with:
name: "TrilogyChaosMod.III"
path: bin/output_III
- name: Upload VC
uses: actions/upload-artifact@v1
with:
name: "TrilogyChaosMod.VC"
path: bin/output_VC
- name: Upload SA
uses: actions/upload-artifact@v1
with:
name: "TrilogyChaosMod.SA"
path: bin/output_SA