-
Notifications
You must be signed in to change notification settings - Fork 3
220 lines (220 loc) · 7.05 KB
/
build_run_linux.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
name: Power Balance Models Ubuntu
on: [push]
jobs:
test_modelica_build:
container:
image: openmodelica/openmodelica:v1.21.0-ompython
name: Test Modelica Build (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04]
steps:
- uses: actions/checkout@v3
- name: Compile models
run: |
mkdir build
cd build
echo "installPackage(Modelica, \"3.2.3+maint.om\", exactMatch=true)" >> install.mos
ln -s ${GITHUB_WORKSPACE}/power_balance/models/*.mo .
omc install.mos
omc -s $(ls *.mo) Modelica +i=Tokamak.Interdependencies
make -f Tokamak_Interdependencies.makefile
shell: bash
- name: Archive Modelica Binaries
uses: actions/upload-artifact@v3
with:
name: om-binaries
path: build/
retention-days: 1
test_module_build:
name: Test Module Build (Python${{ matrix.python-version }} ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04]
python-version: [ '3.11', '3.9', '3.10' ]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install Poetry
run: python -m pip install poetry
- name: Build Module
run: |
poetry install
poetry build
poetry run powerbalance generate-profiles
- name: Archive Plasma Profiles
uses: actions/upload-artifact@v3
with:
name: om-plasma-profiles
path: power_balance/profiles/mat_profile_files/*.mat
retention-days: 1
model_run_om:
container:
image: openmodelica/openmodelica:v1.21.0-ompython
name: Model Run Open Modelica (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04]
needs: [test_modelica_build]
steps:
- name: Retrieve Open Modelica model binaries
uses: actions/download-artifact@v3
with:
name: om-binaries
path: build
- name: Retrieve Plasma profiles
uses: actions/download-artifact@v3
with:
name: om-plasma-profiles
path: power_balance/profiles/mat_profile_files
- name: Run Models
run: |
cd build
chmod +x ./Tokamak_Interdependencies
ln -s ../power_balance/profiles/mat_profile_files/* .
./Tokamak_Interdependencies
model_run_api:
container:
image: openmodelica/openmodelica:v1.21.0-ompython
name: Model Run API (${{ matrix.os }} Python${{ matrix.python-version }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04]
python-version: [ '3.11', '3.9', '3.10' ]
needs: [test_module_build]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install Poetry
run: python -m pip install poetry
- name: Run Models
run: |
poetry install
poetry run powerbalance install-msl
poetry run coverage run --source=power_balance --data-file=coverage_default -m pytest tests/scenarios
- name: Archive Run Coverage
uses: actions/upload-artifact@v3
if: ${{ github.ref_name == 'main' }}
with:
name: coverage-run
path: coverage_default
retention-days: 1
regression_tests:
container:
image: openmodelica/openmodelica:v1.21.0-ompython
name: Regression Tests (${{ matrix.os }} Python${{ matrix.python-version }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04]
python-version: [ '3.11', '3.9', '3.10' ]
needs: [test_module_build]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install Poetry
run: python -m pip install poetry
- name: Run Regression Tests
run: |
poetry install
poetry run powerbalance install-msl
poetry run coverage run --source=power_balance --data-file=coverage_regression -m pytest tests/regression_tests
- name: Archive Run Coverage
uses: actions/upload-artifact@v2
if: ${{ github.ref_name == 'main' }}
with:
name: coverage-regression
path: coverage_regression
retention-days: 1
unit_tests:
container:
image: openmodelica/openmodelica:v1.21.0-ompython
name: Unit Tests (${{ matrix.os }} Python${{ matrix.python-version }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-22.04]
python-version: [ '3.11', '3.9', '3.10' ]
needs: [test_module_build]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
architecture: x64
- name: Install Poetry
run: python -m pip install poetry
- name: Run Unit Tests
run: |
poetry install
poetry run powerbalance install-msl
poetry run coverage run --data-file=coverage_unit --source=power_balance -m pytest tests/unit_tests
- name: Archive Run Coverage
uses: actions/upload-artifact@v2
if: ${{ github.ref_name == 'main' }}
with:
name: coverage-unit
path: coverage_unit
retention-days: 1
collate_coverage:
name: Collate Coverage
runs-on: ubuntu-latest
if: ${{ github.ref_name == 'main' }}
needs: [unit_tests, regression_tests, model_run_api]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
- name: Install Poetry
run: python -m pip install poetry
- name: Retrieve Unit Test Coverage
uses: actions/download-artifact@v3
with:
name: coverage-unit
path: coverage
- name: Retrieve Regression Test Coverage
uses: actions/download-artifact@v3
with:
name: coverage-regression
path: coverage
- name: Retrieve PBM Run Coverage
uses: actions/download-artifact@v3
with:
name: coverage-run
path: coverage
- name: Combine Coverage
run: |
find . -name "*.pyc" -delete
poetry run pip install coverage
poetry run coverage combine coverage/coverage_*
poetry run coverage xml -i
poetry run coverage report -i
continue-on-error: true
- uses: codecov/codecov-action@v2
with:
env_vars: OS,PYTHON
files: coverage.xml
continue-on-error: true