Skip to content

Commit 3456a64

Browse files
authored
Merge pull request #1023 from OpenFAST/dev
OpenFAST v3.1.0
2 parents ebff1b4 + 70129a8 commit 3456a64

269 files changed

Lines changed: 58008 additions & 19052 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/actions/tests-gluecode-openfast/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ runs:
77
- run: |
88
ctest -VV -L linear -E Ideal
99
ctest -VV -j8 -I 1,1,1,2,3,4,5,6,7,8,10,11,12,13,14,15,17,18,21,22,23,24,25,26,27,28,29
10-
working-directory: ${{runner.workspace}}/build
10+
working-directory: ${{runner.workspace}}/openfast/build
1111
shell: bash
1212
1313
# OpenFAST linearization tests

.github/actions/tests-module-aerodyn/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,5 @@ runs:
2121
ctest -VV -j7 -R ad_
2222
fi
2323
24-
working-directory: ${{runner.workspace}}/build
24+
working-directory: ${{runner.workspace}}/openfast/build
2525
shell: bash

.github/actions/tests-module-beamdyn/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ runs:
2020
ctest -VV -j7 -R bd_
2121
fi
2222
23-
working-directory: ${{runner.workspace}}/build
23+
working-directory: ${{runner.workspace}}/openfast/build
2424
shell: bash

.github/actions/tests-module-hydrodyn/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ runs:
55
using: "composite"
66
steps:
77
- run: ctest -VV -j7 -R hd_
8-
working-directory: ${{runner.workspace}}/build
8+
working-directory: ${{runner.workspace}}/openfast/build
99
shell: bash
Lines changed: 19 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,25 @@
11
name: 'InflowWind module tests'
22
description: 'Run tests specific to the InflowWind module'
33
author: 'Rafael Mudafort https://github.com/rafmudaf'
4+
5+
inputs:
6+
test-target:
7+
description: 'Which tests to run: unit | regression | all'
8+
default: 'all'
9+
410
runs:
511
using: "composite"
6-
steps:
7-
- run: ctest -VV -R inflowwind_utest
8-
working-directory: ${{runner.workspace}}/build
12+
steps:
13+
- run: |
14+
15+
if [[ ${{ inputs.test-target }} == "unit" ]] || [[ ${{ inputs.test-target }} == "all" ]]; then
16+
ctest -VV -R inflowwind_utest
17+
fi
18+
19+
if [[ ${{ inputs.test-target }} == "regression" ]] || [[ ${{ inputs.test-target }} == "all" ]]; then
20+
ctest -VV -j7 -R ifw_ -LE python
21+
# Exclude the Python-interface tests since those are run directly in the job
22+
fi
23+
24+
working-directory: ${{runner.workspace}}/openfast/build
925
shell: bash

.github/actions/tests-module-nwtclibrary/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ runs:
55
using: "composite"
66
steps:
77
- run: ctest -VV -R nwtc_library_utest
8-
working-directory: ${{runner.workspace}}/build
8+
working-directory: ${{runner.workspace}}/openfast/build
99
shell: bash

.github/actions/tests-module-subdyn/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ runs:
55
using: "composite"
66
steps:
77
- run: ctest -VV -j7 -R SD_
8-
working-directory: ${{runner.workspace}}/build
8+
working-directory: ${{runner.workspace}}/openfast/build
99
shell: bash

0 commit comments

Comments
 (0)