-
Notifications
You must be signed in to change notification settings - Fork 93
209 lines (174 loc) · 5.41 KB
/
CI_rosco-pytools.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
name: CI_rosco-pytools
# We run CI on push commits on all branches
on: [push, pull_request]
# Specify FORTRAN compiler, used to be "gfortran-10"
env:
FC: gfortran
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
name: Build (${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: ["ubuntu-latest", "macOS-latest", "windows-latest"]
python-version: ["3.9"]
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup environment
uses: conda-incubator/setup-miniconda@v2
with:
miniconda-version: "latest"
channels: conda-forge, general
auto-update-conda: true
python-version: 3.9
environment-file: environment.yml
# Install dependencies of ROSCO toolbox
- name: Add dependencies windows specific
if: true == contains( matrix.os, 'windows')
run: |
conda install -y m2w64-toolchain libpython
env:
FC: gfortran
- name: Add dependencies macOS specific
if: true == contains( matrix.os, 'macOS')
run: |
conda install compilers
# Install ROSCO toolbox
- name: Install ROSCO toolbox on Windows
if: true == contains( matrix.os, 'windows')
env:
FC: gfortran
run: |
python setup.py develop --compile-rosco
- name: Install ROSCO toolbox
if: false == contains( matrix.os, 'windows')
run: |
python setup.py develop --compile-rosco
run_examples:
name: Run Examples
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: ["ubuntu-latest"] #, "macOS-latest"]
python-version: ["3.9"]
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup environment
uses: conda-incubator/setup-miniconda@v2
with:
miniconda-version: "latest"
channels: conda-forge, general
auto-update-conda: true
python-version: 3.9
environment-file: environment.yml
# setup cmake
- name: Setup Workspace
run: cmake -E make_directory ${{runner.workspace}}/ROSCO/ROSCO/build
# Install dependencies of ROSCO toolbox
- name: Add dependencies ubuntu specific
run: |
conda install -y wisdem
- name: Add pyFAST dependency
run: |
git clone http://github.com/OpenFAST/python-toolbox
cd python-toolbox
python -m pip install -e .
# Install ZeroMQ
- name: Install ZeroMQ
run: sudo apt-get install libzmq3-dev
# Install ROSCO toolbox
- name: Install ROSCO toolbox
run: |
python setup.py develop
- name: Configure and Build ROSCO - unix
working-directory: ${{runner.workspace}}/ROSCO/ROSCO/build
run: |
cmake \
-DCMAKE_INSTALL_PREFIX:PATH=${{runner.workspace}}/ROSCO/ROSCO/install \
-DZMQ_CLIENT=ON \
-DCMAKE_Fortran_COMPILER:STRING=${{env.FORTRAN_COMPILER}} \
..
cmake --build . --target install
# Install OpenFAST
- name: Install OpenFAST
run: |
conda install openfast==3.5
# Run examples
- name: Run examples
run: |
cd Examples
python test_examples.py
# Test walkthrough notebook
- name: Test walkthrough notebook
run: |
cd Examples
treon ROSCO_walkthrough.ipynb
# Archive artifacts
- name: Archive production artifacts
if: success() || failure()
uses: actions/upload-artifact@v3
with:
name: ROSCO-artifacts
path: |
${{runner.workspace}}
run_testing:
name: Run Testing
runs-on: ${{ matrix.os }}
strategy:
fail-fast: true
matrix:
os: ["ubuntu-latest"] #, "macOS-latest"]
python-version: ["3.9"]
defaults:
run:
shell: bash -l {0}
steps:
- name: Checkout repository and submodules
uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup environment
uses: conda-incubator/setup-miniconda@v2
with:
miniconda-version: "latest"
channels: conda-forge, general
auto-update-conda: true
python-version: 3.9
environment-file: environment.yml
# Install dependencies of ROSCO toolbox
- name: Add dependencies
run: |
conda install -y wisdem
# Install ROSCO toolbox
- name: Install ROSCO toolbox
run: |
python setup.py install --compile-rosco
# Install OpenFAST
- name: Install OpenFAST
run: |
conda install openfast==3.5
# Run ROSCO Testing
- name: Run ROSCO testing
run: |
cd ROSCO_testing
python ROSCO_testing.py
# Regression testing
- name: Run regression testing
run: |
cd ROSCO_testing
python test_checkpoint.py