-
-
Notifications
You must be signed in to change notification settings - Fork 40
153 lines (142 loc) · 4.09 KB
/
build.yaml
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
name: Build
on:
push:
branches: [main]
tags:
- v*
pull_request:
branches: [main]
jobs:
build:
name: ${{ matrix.os.name }}
runs-on: ${{ matrix.os.runner }}
strategy:
fail-fast: false
matrix:
os:
- runner: ubuntu-latest
name: ubuntu
artifact: linux-x64
exe: hemtt
- runner: windows-latest
name: windows
artifact: windows-x64
exe: hemtt.exe
steps:
- uses: actions/checkout@v4
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Rust Cache
uses: Swatinem/rust-cache@v2
with:
key: build
- name: Compile
uses: actions-rs/cargo@v1
with:
command: build
args: --release
- name: Upload
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.os.artifact }}
path: target/release/${{ matrix.os.exe }}
mods:
name: ${{ matrix.os.name }} / ${{ matrix.mod.repo }}
runs-on: ${{ matrix.os.runner }}
needs:
- build
strategy:
fail-fast: false
matrix:
os:
- runner: ubuntu-latest
name: ubuntu
artifact: linux-x64
- runner: windows-latest
name: windows
artifact: windows-x64
mod:
- repo: acemod/ACE3
commit: 864d2e9eeed7028ef5194caec7948566950ebbdc
- repo: BourbonWarfare/POTATO
commit: 902d4fd52af15143bb49bcd0dc5522af0ececf82
- repo: ArmaForces/Mods
commit: 6871517d4c2f720cea62b767eb7ec422bf712f51
- repo: Theseus-Aegis/Mods
commit: 445ec5fc71bbd01d57252be2794947c2bfe79988
steps:
- name: Download HEMTT
uses: actions/download-artifact@v3
with:
name: ${{ matrix.os.artifact }}
path: hemtt
- name: Checkout
uses: actions/checkout@v4
with:
repository: ${{ matrix.mod.repo }}
path: mod
ref: ${{ matrix.mod.commit }}
- name: Install Linux
if: startsWith(matrix.os.runner, 'ubuntu')
run: |
cd hemtt && cp hemtt /usr/local/bin/hemtt && chmod +x /usr/local/bin/hemtt
- name: Install Windows
if: startsWith(matrix.os.runner, 'windows')
run: |
cd hemtt && copy hemtt.exe C:\Windows\System32\hemtt.exe
- name: Run `hemtt dev` on ${{ matrix.mod.repo }}
run: |
cd mod && hemtt dev
- name: Install Arma 3 Tools
if: startsWith(matrix.os.runner, 'windows')
uses: arma-actions/arma3-tools@master
with:
toolsUrl: ${{ secrets.ARMA3_TOOLS_URL }}
- name: Run `hemtt build` on ${{ matrix.mod.repo }}
run: |
cd mod && hemtt build
release:
name: Release
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
needs:
- build
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download Linux x64
uses: actions/download-artifact@v3
with:
name: linux-x64
path: release
- name: Download Windows x64
uses: actions/download-artifact@v3
with:
name: windows-x64
path: release
- name: Zip Linux x64
run: |
cd release && zip linux-x64.zip hemtt && rm hemtt
- name: Create Release Version
run: |
VERSION=${GITHUB_REF_NAME#v}
echo Version: $VERSION
echo "VERSION=$VERSION" >> $GITHUB_ENV
- name: Pack for Chocolatey
uses: crazy-max/ghaction-chocolatey@v2
with:
args: pack bin/dist/hemtt.nuspec --version ${{ env.VERSION }} --outputdirectory release
- name: Zip Windows x64
run: |
cd release && zip windows-x64.zip hemtt.exe && rm hemtt.exe
- name: Release
uses: softprops/action-gh-release@v1
with:
files: |
release/*
draft: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}