-
Notifications
You must be signed in to change notification settings - Fork 1
214 lines (186 loc) · 8.02 KB
/
build-test.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
name: Build and Test
on:
schedule:
- cron: 0 */24 * * *
workflow_dispatch:
# inputs:
# debug_enabled:
# type: boolean
# description:
# Run the build with tmate debugging enabled
# (https://github.com/marketplace/actions/debugging-with-tmate)
# required: false
# default: false
pull_request:
push:
branches: [main]
## Paste this snippet into the workflow file to enable tmate debugging
# - name: Setup tmate session
# uses: mxschmitt/action-tmate@v3
# if:
# ${{ github.event_name == 'workflow_dispatch' && inputs.debug_enabled
# }}
# with:
# limit-access-to-actor: false
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
env:
GEANT4_VERSION: 11.2.0
XERCES_VERSION: 3.2.5
CPP_STANDARD: 17
Geant4_DIR: ${{ github.workspace }}/geant4
jobs:
build-geant4:
name: Build Geant4 on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
timeout-minutes: 120
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Setup CMake
uses: lukka/get-cmake@v3.29.3
- name: Cache Xerces-C Installation
id: cache-xerces
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/xerces
key: xerces-v${{ env.XERCES_VERSION }}-cpp${{ env.CPP_STANDARD }}
- name: Build and Install Xerces-C
if: steps.cache-xerces.outputs.cache-hit != 'true'
run: |
git clone https://github.com/apache/xerces-c.git xerces-source
git -C xerces-source checkout tags/v${{ env.XERCES_VERSION }}
cmake -B xerces-build -S xerces-source -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=${{ github.workspace }}/xerces -DCMAKE_CXX_STANDARD=${{ env.CPP_STANDARD }} -DBUILD_SHARED_LIBS=OFF ${{ matrix.os == 'windows-latest' && '-DCMAKE_MSVC_RUNTIME_LIBRARY=MultiThreaded -DCMAKE_CXX_FLAGS_RELEASE="/MT"' || '-G Ninja -DCMAKE_CXX_FLAGS=-fPIC -DCMAKE_C_FLAGS=-fPIC -Dnetwork-accessor=socket -Dtranscoder=iconv' }}
cmake --build xerces-build --parallel $(nproc) --config Release --target install
- name: Cache Geant4 Installation
id: cache-geant4
uses: actions/cache@v4
with:
path: ${{ env.Geant4_DIR }}
key: geant4-v${{ env.GEANT4_VERSION }}-cpp${{ env.CPP_STANDARD }}
- name: Build and Install Geant4 (without datasets)
if: steps.cache-geant4.outputs.cache-hit != 'true'
run: |
git clone https://github.com/Geant4/geant4.git ${{ github.workspace }}/geant4-source --depth 1 --branch v${{ env.GEANT4_VERSION }}
cmake -B geant4-build -S geant4-source -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=${{ env.Geant4_DIR }} -DXERCESC_ROOT_DIR=${{ github.workspace }}/xerces -DCMAKE_CXX_STANDARD=${{ env.CPP_STANDARD }} -DGEANT4_USE_GDML=ON -DGEANT4_INSTALL_EXAMPLES=OFF -DGEANT4_INSTALL_DATA=OFF -DGEANT4_BUILD_TLS_MODEL=global-dynamic -DBUILD_STATIC_LIBS=ON -DBUILD_SHARED_LIBS=OFF ${{ matrix.os == 'windows-latest' && '-DCMAKE_MSVC_RUNTIME_LIBRARY=MultiThreaded -DCMAKE_CXX_FLAGS_RELEASE="/MT"' || '-G Ninja -DCMAKE_CXX_FLAGS=-fPIC -DCMAKE_C_FLAGS=-fPIC -DGEANT4_USE_SYSTEM_EXPAT=OFF' }}
cmake --build geant4-build --parallel $(nproc) --config Release --target install
install-geant4-datasets:
name: Download Geant4 datasets for ${{ matrix.os }}
needs: [build-geant4]
runs-on: ${{ matrix.os }}
timeout-minutes: 30
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
steps:
- name: Cache Geant4 Installation
id: cache-geant4
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/geant4
key: geant4-v${{ env.GEANT4_VERSION }}-cpp${{ env.CPP_STANDARD }}
fail-on-cache-miss: true
- name: Cache Geant4 Datasets
id: cache-geant4-data
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/geant4-data
key: geant4-${{ env.GEANT4_VERSION }}-data
enableCrossOsArchive: true
lookup-only: true
- name: Move Geant4 Datasets
if: steps.cache-geant4-data.outputs.cache-hit != 'true'
shell: bash
run: |
bash ${{ github.workspace }}/geant4/bin/geant4-config --install-datasets
bash ${{ github.workspace }}/geant4/bin/geant4-config --check-datasets
mv ${{ github.workspace }}/geant4/share/Geant4/data ${{ github.workspace }}/geant4-data
build-test:
name:
Build and Test for ${{ matrix.os }} (Python ${{ matrix.python-version }})
needs: [install-geant4-datasets]
timeout-minutes: 30
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version:
- "3.8"
- "3.9"
- "3.10"
- "3.11"
- "3.12"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Setup CMake
uses: lukka/get-cmake@v3.29.3
- name: Setup Windows environment variables
if: matrix.os == 'windows-latest'
shell: bash
run: |
echo "CMAKE_ARGS=-DCMAKE_MSVC_RUNTIME_LIBRARY=MultiThreaded" >> $GITHUB_ENV
- name: Cache Xerces-C Installation
id: cache-xerces
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/xerces
key: xerces-v${{ env.XERCES_VERSION }}-cpp${{ env.CPP_STANDARD }}
fail-on-cache-miss: true
- name: Cache Geant4 Installation
id: cache-geant4
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/geant4
key: geant4-v${{ env.GEANT4_VERSION }}-cpp${{ env.CPP_STANDARD }}
fail-on-cache-miss: true
- name: pip install the package
run: |
python -m pip install .[test]
git tag
python -c "import geant4_python_application; print(geant4_python_application.version)"
# test ability to download datasets in one job and use the cache in the others
- name: Cache Geant4 Datasets
if: matrix.python-version != '3.11'
id: cache-geant4-data
uses: actions/cache@v4
with:
path: ${{ github.workspace }}/geant4-data
key: geant4-${{ env.GEANT4_VERSION }}-data
fail-on-cache-miss: true
enableCrossOsArchive: true
- name: Move Geant4 datasets (Ubuntu/MacOS)
if: matrix.python-version != '3.11' && matrix.os != 'windows-latest'
run: |
GEANT4_DATA_DIR=$(python -c "import geant4_python_application; print(geant4_python_application.data_directory())")
mkdir -p ${{ github.workspace }}/geant4-data "$GEANT4_DATA_DIR"
mv ${{ github.workspace }}/geant4-data/* "$GEANT4_DATA_DIR"
# TODO: unify this with the above
- name: Move Geant4 datasets (Windows)
if: matrix.python-version != '3.11' && matrix.os == 'windows-latest'
shell: powershell
run: |
$env:GEANT4_DATA_DIR = python -c "import geant4_python_application; print(geant4_python_application.data_directory())"
New-Item -ItemType Directory -Path "${{ github.workspace }}\geant4-data" -Force
New-Item -ItemType Directory -Path $env:GEANT4_DATA_DIR -Force
Move-Item "${{ github.workspace }}\geant4-data\*" $env:GEANT4_DATA_DIR -Force
- name: Install datasets
uses: nick-fields/retry@v3
with:
timeout_minutes: 30
retry_wait_seconds: 60
max_attempts: 5
command: |
python -c "import geant4_python_application as g4; g4.install_datasets()"
- name: Run tests
run: |
python -m pytest -vv --reruns 3 --reruns-delay 30 --only-rerun "(?i)http|timeout|connection|socket|resolve"