Use coinbrew to fetch and extract netlib data? #81
-
I'm trying to add unit testing to the MS Visual Studio solution (windows-ci.yml for msvs) for Clp and other projects, but I'm struggling with the netlib and miplib data. For these actions, the fetching is done using coinbrew, but the building is done using msbuild of the Visual Studio solution. For running tests, the fetching step also downloads the sample and netlib data. However, the step to extract the netlib mps.gz files to just mps is not part of fetch--AFAIK, extracting is normally doing as part of coinbrew build of the project as a whole, which I won't do because I'm building using msbuild. I tried to |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
I can certainly add the option to "build" data projects to coinbrew. Can you open an issue for that? But for a single project with no dependencies, all it's going to do is call |
Beta Was this translation helpful? Give feedback.
-
Thank you for considering. I created issue #82. |
Beta Was this translation helpful? Give feedback.
I can certainly add the option to "build" data projects to coinbrew. Can you open an issue for that? But for a single project with no dependencies, all it's going to do is call
configure; make; make install
, so you could certainly just do that instead of calling coinbrew. You may need to add--build=x86_64-w64-mingw32
and if you want the files to be unzipped, then you need to configure with--disable-zlib
. Use--prefix
to specify where you want the files to be installed.