forked from NREL/EnergyPlus
-
Notifications
You must be signed in to change notification settings - Fork 0
210 lines (179 loc) · 7.17 KB
/
release_windows.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
name: Windows Releases
on:
push:
tags:
- '*'
env:
CMAKE_Fortran_COMPILER: "/c/msys64/mingw64/bin/x86_64-w64-mingw32-gfortran.exe"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BUILD_TYPE: Release
Python_REQUIRED_VERSION: 3.12.2
jobs:
build_installer_artifact:
name: Build Packages for ${{ matrix.pretty }}
runs-on: windows-2019
# to move to windows-2022, just make sure to set the Visual Studio generator build to "17 2022"
continue-on-error: ${{ matrix.allow_failure }}
strategy:
# fail-fast: Default is true, switch to false to allow one platform to fail and still run others
fail-fast: false
# ** NOTE ** If build names/archs/platforms are changed, make sure to update the release job below
matrix:
name: [x64, x64_hardened] # removed x86 because it won't build packages now
include:
- name: x64
arch: x64
allow_failure: false
vs-generator: x64
package-arch: x86_64
enable_hardened_runtime: OFF
pretty: "Windows x64"
# - name: x86
# arch: x86
# allow_failure: false
# vs-generator: Win32
# package-arch: i386
# enable_hardened_runtime: OFF
- name: x64_hardened
arch: x64
allow_failure: false
vs-generator: x64
package-arch: x86_64-HardenedRuntime
enable_hardened_runtime: ON
pretty: "Windows x64 Hardened"
permissions:
# Needed permission to upload the release asset
contents: write
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ env.Python_REQUIRED_VERSION }}
uses: jmarrec/setup-python@v5
id: setup-python
with:
python-version: ${{ env.Python_REQUIRED_VERSION }}
architecture: ${{ matrix.arch }}
- name: Setup QtIFW 4.x
uses: jmarrec/setup-qtifw@v1
with:
qtifw-version: '4.6.1'
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
pip install aqtinstall
- name: Install System dependencies and LaTeX
shell: bash
run: |
set -x
echo "Downloading MiKTeX CLI installer"
# We download from a specific mirror already # TODO: Should store this setup package somewhere ourselves
curl -L -O https://ctan.math.illinois.edu/systems/win32/miktex/setup/windows-x64/miktexsetup-5.5.0%2B1763023-x64.zip
unzip miktexsetup-5.5.0%2B1763023-x64.zip
echo "Setting up the local package directory via download"
./miktexsetup_standalone --verbose \
--local-package-repository=C:/ProgramData/MiKTeX-Repo \
--remote-package-repository="https://ctan.math.illinois.edu/systems/win32/miktex/tm/packages/" \
--package-set=essential \
download
echo "Installing from the local package directory previously set up"
./miktexsetup_standalone --verbose \
--local-package-repository=C:/ProgramData/MiKTeX-Repo \
--package-set=essential \
--shared \
install
echo "Adding MiKTeX bin folder to PATH and to GITHUB_PATH"
echo "C:/Program Files/MiKTeX/miktex/bin/x64/" >> $GITHUB_PATH
export PATH="/c/Program Files/MiKTeX/miktex/bin/x64/:$PATH"
echo "Configuring MiKTeX to install missing packages on the fly"
initexmf --admin --verbose --set-config-value='[MPM]AutoInstall=1'
echo "Configure default mirror for packages"
mpm --admin --set-repository="https://ctan.math.illinois.edu/systems/win32/miktex/tm/packages/"
# Avoid annoying warning: "xelatex: major issue: So far, you have not checked for updates as a MiKTeX user."
mpm --find-updates
mpm --admin --find-updates
- name: Downgrade cmake to 3.28
run: |
cmake --version
choco install cmake --version=3.28.4 --installargs 'ADD_CMAKE_TO_PATH=System'
- name: Check cmake
run: |
cmake --version
# This will install all required packages and does that in a single thread. So later in cmake we can safely run in parallel
- name: Install required packages by building the Test document
shell: bash
working-directory: ./doc/
run: |
# It shaves about 1min40s to preinstall from the .lst so do it first
mpm --verbose --admin --require=@energyplus_packages_windows.lst
cd test/
xelatex dependencies.tex
- name: Create Build Directory
run: cmake -E make_directory ./build/
- name: Configure CMake
working-directory: ./build
shell: bash
run: |
set -x
cmake -G "Visual Studio 16 2019" -A ${{ matrix.vs-generator }} \
-DLINK_WITH_PYTHON:BOOL=ON -DPYTHON_CLI:BOOL=ON \
-DPython_REQUIRED_VERSION:STRING=${{ steps.setup-python.outputs.python-version }} \
-DPython_ROOT_DIR:PATH=$RUNNER_TOOL_CACHE/Python/${{ steps.setup-python.outputs.python-version }}/${{ matrix.arch }}/ \
-DBUILD_FORTRAN:BOOL=ON -DBUILD_PACKAGE:BOOL=ON \
-DENABLE_HARDENED_RUNTIME:BOOL=${{ matrix.enable_hardened_runtime }} \
-DDOCUMENTATION_BUILD:STRING="BuildWithAll" -DTEX_INTERACTION:STRING="batchmode" \
../
- name: Build Package
working-directory: ./build
shell: bash
run: cmake --build . --target package -j 4 --config $BUILD_TYPE
- name: Upload Zip as artifact for testing
uses: actions/upload-artifact@v4
with:
name: energyplus-${{ matrix.package-arch }}
path: build/EnergyPlus-*-Windows-${{ matrix.package-arch }}.zip
if-no-files-found: error
retention-days: 7
overwrite: false
- name: Upload Zip to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: build/EnergyPlus-*-Windows-${{ matrix.package-arch }}.zip
tag: ${{ github.ref }}
overwrite: true
file_glob: true
- name: Upload IFW to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: build/EnergyPlus-*-Windows-${{ matrix.package-arch }}.exe
tag: ${{ github.ref }}
overwrite: true
file_glob: true
test_package:
name: Test Built Package
needs: build_installer_artifact
runs-on: windows-2019
steps:
- uses: actions/checkout@v4 # Still need E+ checked out to get testing scripts
with:
path: checkout
- name: Set up Python ${{ env.Python_REQUIRED_VERSION }}
uses: actions/setup-python@v5
id: setup-python
with:
python-version: ${{ env.Python_REQUIRED_VERSION }}
architecture: ${{ matrix.arch }}
- name: Gather Test Package from Artifacts
uses: actions/download-artifact@v4
with:
name: energyplus-x86_64
path: package
- name: Check Contents
shell: bash
run: ls
- name: Check Package contents
shell: bash
working-directory: package
run: ls
- name: Run Package Tests
run: python checkout/scripts/package_tests/runner.py --verbose --msvc 2022 win64 package/