We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We'd like to add the ROSCO libdiscon.so library to the official docker at build time (i.e. when a new version is released).
libdiscon.so
The latest, for example, 3 minor versions would be available in the /lib/rosco directory in the built image eg.:
/lib/rosco
rosco_2.9.0_libdiscon.so
rosco_2.8.0_libdiscon.so
rosco_2.7.0_libdiscon.so
Periodically, the build matrix in the GitHub workflow can be updated to include updated versions of ROSCO.
These can then be pointed to in the servodyn file.
We're currently building and copying the library into our openfast container at runtime:
apt-get update apt-get install python3-pip git cmake ninja-build gfortran git clone https://github.com/NREL/[email protected] cd ROSCO/ pip install -e . cp /ROSCO/rosco/lib/libdiscon.so /lib/rosco/rosco_2.9.0_libdiscon.so
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is your feature request related to a problem? Please describe.
We'd like to add the ROSCO
libdiscon.so
library to the official docker at build time (i.e. when a new version is released).Describe the solution you'd like
The latest, for example, 3 minor versions would be available in the
/lib/rosco
directory in the built image eg.:rosco_2.9.0_libdiscon.so
rosco_2.8.0_libdiscon.so
rosco_2.7.0_libdiscon.so
Periodically, the build matrix in the GitHub workflow can be updated to include updated versions of ROSCO.
These can then be pointed to in the servodyn file.
Describe alternatives you've considered
We're currently building and copying the library into our openfast container at runtime:
The text was updated successfully, but these errors were encountered: