-
Notifications
You must be signed in to change notification settings - Fork 32
314 lines (257 loc) · 7.9 KB
/
build.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
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
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
# SWAT+ CI for GitHub, O. David, 2024, LGPL 2.1
name: Build/Release SWAT+
on:
push:
tags:
- '*.*'
- '*.*.*'
workflow_dispatch:
inputs:
rev:
description: 'tag, branch, or SHA to check out'
required: true
default: 'develop'
permissions:
contents: write
packages: write
pull-requests: write
jobs:
# Get the version from tag
version:
name: Version
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: '${{ github.event.inputs.rev }}'
fetch-tags: true
fetch-depth: 0
- name: Get SWAT+ version
id: get_version
run: |
V=`git describe --tags`
echo $V
echo $V >v.txt
cat v.txt
echo ${{ github.event.release.tag_name }}
echo ${GITHUB_REF#refs/*/}
- name: upload
uses: actions/upload-artifact@v4
with:
name: release_tag
path: v.txt
##### Build swat with GNU
build-gnu:
runs-on: ${{ matrix.os }}
needs:
- version
#if: endsWith(github.event.base_ref, 'main') == true
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
toolchain:
- {compiler: gcc, version: 13}
steps:
- name: Install Compiler
uses: fortran-lang/setup-fortran@v1
id: setup-fortran
with:
compiler: ${{ matrix.toolchain.compiler }}
version: ${{ matrix.toolchain.version }}
- name: Checkout
uses: actions/checkout@v4
- name: Build SWAT+
id: build_exe
run: |
echo ${{ env.FC }}
cmake --version
RELEASE_VERSION=${GITHUB_REF#refs/*/}
os="$RUNNER_OS"
e="build/swatplus-*"
gen="Unix"
if [ "$RUNNER_OS" == "Windows" ]; then
e="build/swatplus-*.exe"
gen="MinGW"
fi
# generate
cmake -B build -G "${gen} Makefiles" \
-D CMAKE_Fortran_COMPILER=${{ env.FC }} \
-D TAG=$RELEASE_VERSION \
-D CMAKE_BUILD_TYPE=Release
# build
cmake --build build --parallel 4
exebase=`basename -s .exe build/swatplus-*`
exez="${exebase}.zip"
exe=`ls $e`
echo $exe
echo $exez
echo $os
echo "exe=$exe" >> $GITHUB_OUTPUT
echo "exez=$exez" >> $GITHUB_OUTPUT
echo "os=$os" >> $GITHUB_OUTPUT
ls -hl build/swatplus-*
file build/swatplus-*
if [ "$RUNNER_OS" != "Windows" ]; then
(cd build && zip ../$exez swatplus-*)
fi
shell: bash
- name: zip
if: matrix.os == 'windows-latest'
uses: vimtor/[email protected]
with:
files: ${{ steps.build_exe.outputs.exe }}
dest: ${{ steps.build_exe.outputs.exez }}
- name: upload
uses: actions/upload-artifact@v4
with:
name: gnu-${{ steps.build_exe.outputs.os }}
path: ${{ steps.build_exe.outputs.exez }}
##### Build with Intel (ifx. ifort)
build-intel:
runs-on: ${{ matrix.os }}
needs:
- version
# if: endsWith(github.event.base_ref, 'main') == true
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
toolchain:
- {compiler: intel, version: '2024.1'}
- {compiler: intel-classic, version: '2021.9'}
exclude:
- os: macos-latest
toolchain: {compiler: intel, version: '2024.1'}
- os: windows-latest
toolchain: {compiler: intel-classic, version: '2021.9'}
- os: ubuntu-latest
toolchain: {compiler: intel-classic, version: '2021.9'}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
ref: '${{ github.event.inputs.rev }}'
# fetch-tags: true
# fetch-depth: 0
- name: Install Compiler
uses: fortran-lang/setup-fortran@v1
id: setup-fortran
with:
compiler: ${{ matrix.toolchain.compiler }}
version: ${{ matrix.toolchain.version }}
- name: Download version
uses: actions/download-artifact@v4
with:
name: release_tag
- name: Build SWAT+
id: build_exe
run: |
echo ${{ env.FC }}
cmake --version
# RELEASE_VERSION=${GITHUB_REF#refs/*/}
RELEASE_VERSION=`cat v.txt`
os="$RUNNER_OS"
if [ "$RUNNER_OS" == "Linux" ]; then
cmake -B build \
-D CMAKE_Fortran_COMPILER=${{ env.FC }} \
-D TAG=$RELEASE_VERSION \
-D CMAKE_BUILD_TYPE=Release
e="build/swatplus-*"
elif [ "$RUNNER_OS" == "Windows" ]; then
cmake -B build -G "MinGW Makefiles" \
-D CMAKE_Fortran_COMPILER="C:\Program Files (x86)\Intel\oneAPI\compiler\2024.1\bin\${{ env.FC }}.exe" \
-D TAG=$RELEASE_VERSION \
-D CMAKE_BUILD_TYPE=Release
e="build/swatplus-*.exe"
elif [ "$RUNNER_OS" == "macOS" ]; then
cmake -B build \
-D CMAKE_Fortran_COMPILER=${{ env.FC }} \
-D TAG=$RELEASE_VERSION \
-D CMAKE_APPLE_SILICON_PROCESSOR="x86_64" \
-D CMAKE_BUILD_TYPE=Release
e="build/swatplus-*"
else
echo "$RUNNER_OS not supported."
exit 1
fi
# compile
cmake --build build --parallel 4
exebase=`basename -s .exe build/swatplus-*`
exez="${exebase}.zip"
exe=`ls $e`
echo $exe
echo $exez
echo $os
echo "exe=$exe" >> $GITHUB_OUTPUT
echo "exez=$exez" >> $GITHUB_OUTPUT
echo "os=$os" >> $GITHUB_OUTPUT
ls -hl build/swatplus-*
file build/swatplus-*
if [ "$RUNNER_OS" != "Windows" ]; then
(cd build && zip ../$exez swatplus-*)
fi
shell: bash
- name: zip
if: matrix.os == 'windows-latest'
uses: vimtor/[email protected]
with:
files: ${{ steps.build_exe.outputs.exe }}
dest: ${{ steps.build_exe.outputs.exez }}
- name: upload
uses: actions/upload-artifact@v4
with:
name: intel-${{ steps.build_exe.outputs.os }}
path: ${{ steps.build_exe.outputs.exez }}
##### Create a new release with all zip files
release:
name: Release
runs-on: ubuntu-latest
needs: [ build-gnu, build-intel ]
steps:
- name: Download GNU Linux
uses: actions/download-artifact@v4
with:
name: gnu-Linux
- name: Download GNU Windows
uses: actions/download-artifact@v4
with:
name: gnu-Windows
- name: Download GNU macOS
uses: actions/download-artifact@v4
with:
name: gnu-macOS
- name: Download Intel Linux
uses: actions/download-artifact@v4
with:
name: intel-Linux
- name: Download Intel Windows
uses: actions/download-artifact@v4
with:
name: intel-Windows
- name: Download Intel macOS
uses: actions/download-artifact@v4
with:
name: intel-macOS
- name: Download version
uses: actions/download-artifact@v4
with:
name: release_tag
- name: Read version
id: read_ver
run: |
RELEASE_VERSION=`cat v.txt`
echo "rv=$RELEASE_VERSION" >> $GITHUB_OUTPUT
- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
token: ${{ github.token }}
# tag_name: ${{ github.event.release.tag_name }}
prerelease: true
draft: false
# name: ${{ github.event.release.tag_name }}
name: ${{ steps.read_ver.outputs.rv }}
files: swatplus-*
generate_release_notes: true