-
Notifications
You must be signed in to change notification settings - Fork 2
265 lines (226 loc) · 9.42 KB
/
release.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
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
name: Build and Release Executables
on:
push:
tags:
- 'v*'
workflow_dispatch:
jobs:
build-linux-macos:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
fail-fast: false
steps:
- uses: actions/checkout@v3
- name: Get XPlane SDK
shell: bash
run: |
SDK_VERSION=411
curl -L "https://developer.x-plane.com/wp-content/plugins/code-sample-generation/sdk_zip_files/XPSDK${SDK_VERSION}.zip" -o "XPSDK${SDK_VERSION}.zip"
unzip XPSDK${SDK_VERSION}.zip
mv SDK ../
- uses: melusina-org/setup-macports@v1
if: startsWith(matrix.os, 'macos')
with:
macports-version: 2.7.1
- name: Build Executable
shell: bash
env:
OS: ${{ matrix.os }}
run: |
TAG=${GITHUB_REF##*/}
if [ ! -z "$TAG" ]; then
echo "VERSION=$TAG" > version.mak
fi
if [ $OS == "ubuntu-latest" ]; then
sudo apt-get -y install libopenal1 libopenal-dev
make -f Makefile.lin64
else
port selfupdate
port install expat +universal
make -f Makefile.mac64
fi
tar cvf binary.tar openSAM-pkg*/openSAM/*_x64
- name: Upload Build Artifact
uses: actions/upload-artifact@v4
with:
name: build-${{ matrix.os }}
path: |
binary.tar
build-windows:
runs-on: windows-latest
steps:
- uses: msys2/setup-msys2@v2
with:
msystem: MINGW64
update: true
install: >-
mingw-w64-x86_64-gcc
mingw-w64-x86_64-expat
make
- uses: actions/checkout@v3
- name: Get XPlane SDK
shell: bash
run: |
SDK_VERSION=411
curl -L "https://developer.x-plane.com/wp-content/plugins/code-sample-generation/sdk_zip_files/XPSDK${SDK_VERSION}.zip" -o "XPSDK${SDK_VERSION}.zip"
unzip XPSDK${SDK_VERSION}.zip
mv SDK ../
- name: Get libOpenal32
shell: bash
run: |
curl -L https://github.com/hotbso/libOpenAL32/archive/refs/heads/main.zip -o libOpenal32.zip
unzip libOpenal32.zip
- name: Build Windows binaries
shell: msys2 {0}
run: |
TAG=${GITHUB_REF##*/}
if [ ! -z "$TAG" ]; then
echo "VERSION=$TAG" > version.mak
fi
make -f Makefile.mgw64 OPENAL=./libOpenAL32-main
tar cvf binary.tar openSAM-pkg*/openSAM/*_x64
- name: Upload Build Artifact
uses: actions/upload-artifact@v4
with:
name: build-windows
path: |
binary.tar
release:
runs-on: ubuntu-latest
needs: [build-linux-macos, build-windows]
steps:
- uses: actions/checkout@v3
- name: setup crc32 tool
shell: bash
run: |
sudo apt-get update
sudo apt-get install -y libarchive-zip-perl
TAG=${GITHUB_REF##*/}
if [ ! -z "$TAG" ]; then
echo "VERSION=$TAG" > version.mak
fi
- name: Download Build Artifacts
uses: actions/download-artifact@v4
with:
path: ./build
- name: List artifacts
shell: bash
run: |
pwd
ls -lR ./build
- name: Consolidate platform builds
shell: bash
run: |
pwd
for t in ./build/*/binary.tar
do
tar xvf $t
done
bash ./sync_xp11_pkg.sh
- name: Prepare Skunkcrafts Updater
shell: bash
run: |
# at this point version.mak should have the version number
source version.mak
for XP_VERSION in XP11 XP12; do
if [ $XP_VERSION == "XP11" ]; then
OPENSAM_ARTIFACT=openSAM-pkg_XP11
else
OPENSAM_ARTIFACT=openSAM-pkg
fi
RELEASE_FOLDER=release/${XP_VERSION}
OPENSAM_FOLDER=$RELEASE_FOLDER/openSAM
OPENSAM_LIBRARY_FOLDER=$RELEASE_FOLDER/openSAM_Library
mkdir -p ${OPENSAM_FOLDER}
mkdir -p ${OPENSAM_FOLDER}/lua
mkdir -p ${OPENSAM_LIBRARY_FOLDER}
echo "=============== RELEASE FOLDER ==============="
cp -r ${OPENSAM_ARTIFACT}/LICENSE $RELEASE_FOLDER/.
cp -r ${OPENSAM_ARTIFACT}/Credits_and_Licensing.txt $RELEASE_FOLDER/.
cp -r ${OPENSAM_ARTIFACT}/00_README.txt $RELEASE_FOLDER/.
echo "=============== OPEN SAM ARTIFACT ==============="
rsync -av ${OPENSAM_ARTIFACT}/openSAM/ ${OPENSAM_FOLDER}/
cp -r openSAM-pkg/lua/* ${OPENSAM_FOLDER}/lua
cp -r ${OPENSAM_ARTIFACT}/LICENSE ${OPENSAM_FOLDER}/LICENSE
cp -r ${OPENSAM_ARTIFACT}/Credits_and_Licensing.txt ${OPENSAM_FOLDER}/Credits_and_Licensing.txt
cp -r ${OPENSAM_ARTIFACT}/00_README.txt ${OPENSAM_FOLDER}/00_README.txt
ls -l ${OPENSAM_FOLDER}
echo
echo "=============== OPEN SAM LIBRARY ARTIFACT ==============="
rsync -av ${OPENSAM_ARTIFACT}/openSAM_Library/ ${OPENSAM_LIBRARY_FOLDER}/
cp -r ${OPENSAM_ARTIFACT}/LICENSE ${OPENSAM_LIBRARY_FOLDER}/LICENSE
cp -r ${OPENSAM_ARTIFACT}/Credits_and_Licensing.txt ${OPENSAM_LIBRARY_FOLDER}/Credits_and_Licensing.txt
cp -r ${OPENSAM_ARTIFACT}/00_README.txt ${OPENSAM_LIBRARY_FOLDER}/00_README.txt
ls -l ${OPENSAM_LIBRARY_FOLDER}
## skunkcrafts for openSAM_Library
sed -e "s|@FOLDER_NAME@|${OPENSAM_LIBRARY_FOLDER}|g" \
-e "s|@XP_VERSION@|${XP_VERSION}|g" \
-e "s|@VERSION@|${VERSION}|g" \
-e "s|@NAME@|Library|g" \
skunkcrafts_updater.cfg.template > "${OPENSAM_LIBRARY_FOLDER}/skunkcrafts_updater.cfg"
sed -e "s|@FOLDER_NAME@|${OPENSAM_LIBRARY_FOLDER}|g" \
-e "s|@XP_VERSION@|${XP_VERSION}|g" \
-e "s|@VERSION@|${VERSION}|g" \
-e "s|@NAME@|Library|g" \
skunkcrafts_updater_beta.cfg.template > "${OPENSAM_LIBRARY_FOLDER}/skunkcrafts_updater_beta.cfg"
## skunkcrafts for openSAM
sed -e "s|@FOLDER_NAME@|${OPENSAM_FOLDER}|g" \
-e "s|@XP_VERSION@|${XP_VERSION}|g" \
-e "s|@VERSION@|${VERSION}|g" \
-e "s|@NAME@||g" \
skunkcrafts_updater.cfg.template > "${OPENSAM_FOLDER}/skunkcrafts_updater.cfg"
sed -e "s|@FOLDER_NAME@|${OPENSAM_FOLDER}|g" \
-e "s|@XP_VERSION@|${XP_VERSION}|g" \
-e "s|@VERSION@|${VERSION}|g" \
-e "s|@NAME@||g" \
skunkcrafts_updater_beta.cfg.template > "${OPENSAM_FOLDER}/skunkcrafts_updater_beta.cfg"
find ${OPENSAM_FOLDER}/ -type f ! \( -name '*skunkcrafts_updater*' -o -path '*skunkcrafts_updater*' \) -print0 | while IFS= read -r -d '' file; do
checksum_hex=$(crc32 "$file")
# Convert hex checksum to uint32 decimal
checksum_decimal=$((16#$checksum_hex))
# Remove "release/" prefix from $file
modified_file="${file#${OPENSAM_FOLDER}/}"
echo "$modified_file|$checksum_decimal" >> ${OPENSAM_FOLDER}/skunkcrafts_updater_whitelist.txt
done
find ${OPENSAM_LIBRARY_FOLDER}/ -type f ! \( -name '*skunkcrafts_updater*' -o -path '*skunkcrafts_updater*' \) -print0 | while IFS= read -r -d '' file; do
checksum_hex=$(crc32 "$file")
# Convert hex checksum to uint32 decimal
checksum_decimal=$((16#$checksum_hex))
# Remove "release/" prefix from $file
modified_file="${file#${OPENSAM_LIBRARY_FOLDER}/}"
echo "$modified_file|$checksum_decimal" >> ${OPENSAM_LIBRARY_FOLDER}/skunkcrafts_updater_whitelist.txt
done
touch ${OPENSAM_FOLDER}/skunkcrafts_updater_blacklist.txt
touch ${OPENSAM_LIBRARY_FOLDER}/skunkcrafts_updater_blacklist.txt
(cd ${RELEASE_FOLDER} && 7z a "${{ github.workspace }}/openSAM-${XP_VERSION}-${VERSION}.zip" *)
done
TAG=${GITHUB_REF##*/}
TARGET_BRANCH="release"
# if TAG contains -
if [[ $TAG == *"-"* ]]; then
echo "This is a beta release"
TARGET_BRANCH="beta"
fi
git checkout -b ${TARGET_BRANCH}
git config --global user.email "[email protected]"
git config --global user.name "GH Release"
git add release/
git commit -m "new ${TARGET_BRANCH} - ${TAG}"
git push -f -u origin ${TARGET_BRANCH}
# push to release branch
#git checkout -b release
#git config --global user.email "[email protected]"
#git config --global user.name "GH Release"
#git add release/
#git commit -m "Release ${VERSION}"
#git push -f -u origin release
- name: Create Release
id: create_release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
${{ github.workspace }}/openSAM*.zip
prerelease: ${{ contains(github.ref_name, '-') }}