-
Notifications
You must be signed in to change notification settings - Fork 464
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
651 changed files
with
282,996 additions
and
132,066 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,4 @@ | ||
# add (semi-useful) version info to git archive | ||
CreateGitVersion.bat ident export-subst | ||
|
||
# Declare files that will always have CRLF line endings on checkout. | ||
*.bat text eol=crlf | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,25 @@ | ||
name: 'InflowWind module tests' | ||
description: 'Run tests specific to the InflowWind module' | ||
author: 'Rafael Mudafort https://github.com/rafmudaf' | ||
|
||
inputs: | ||
test-target: | ||
description: 'Which tests to run: unit | regression | all' | ||
default: 'all' | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- run: ctest -VV -R inflowwind_utest | ||
working-directory: ${{runner.workspace}}/build | ||
steps: | ||
- run: | | ||
if [[ ${{ inputs.test-target }} == "unit" ]] || [[ ${{ inputs.test-target }} == "all" ]]; then | ||
ctest -VV -R inflowwind_utest | ||
fi | ||
if [[ ${{ inputs.test-target }} == "regression" ]] || [[ ${{ inputs.test-target }} == "all" ]]; then | ||
ctest -VV -j7 -R ifw_ -LE python | ||
# Exclude the Python-interface tests since those are run directly in the job | ||
fi | ||
working-directory: ${{runner.workspace}}/openfast/build | ||
shell: bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: 'MoorDyn module tests' | ||
description: 'Run tests specific to the MoorDyn module' | ||
author: 'Andy Platt https://github.com/andrew-platt' | ||
|
||
|
||
inputs: | ||
test-target: | ||
description: 'Which tests to run: unit | regression | all' | ||
default: 'all' | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
- run: | | ||
if [[ ${{ inputs.test-target }} == "regression" ]] || [[ ${{ inputs.test-target }} == "all" ]]; then | ||
ctest -VV -j7 -R md_ -LE python | ||
fi | ||
working-directory: ${{runner.workspace}}/openfast/build | ||
shell: bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
name: 'SeaState module tests' | ||
description: 'Run tests specific to the SeaState module' | ||
author: 'Rafael Mudafort https://github.com/rafmudaf' | ||
runs: | ||
using: "composite" | ||
steps: | ||
- run: ctest -VV -j7 -R seastate_ -LE python | ||
working-directory: ${{runner.workspace}}/openfast/build | ||
shell: bash |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
name: 'VersionInfo module tests' | ||
description: 'Run tests specific to the NWTC Library module' | ||
author: 'Rafael Mudafort https://github.com/rafmudaf' | ||
runs: | ||
using: "composite" | ||
steps: | ||
- run: ctest -VV -R versioninfo_utest | ||
working-directory: ${{runner.workspace}}/openfast/build | ||
shell: bash |
Oops, something went wrong.