Skip to content

Commit

Permalink
Disable Fortran and Ipopt for the nightly build. (#9852)
Browse files Browse the repository at this point in the history
  - The nightly build creates nightly packages. For now, disable Fortran
    on it so that it produces a package with out difficult-to-setup dependencies
    while providing all the normal functionalities of OpenModelica.
  • Loading branch information
mahge committed Dec 5, 2022
1 parent 8636c5b commit 1d45e82
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .CI/cmake/Jenkinsfile.cmake.macos.gcc
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,11 @@ pipeline {
// Always specify the compilers explicilty for macOS
+ " -DCMAKE_C_COMPILER=gcc"
+ " -DCMAKE_CXX_COMPILER=g++"
+ " -DCMAKE_Fortran_COMPILER=gfortran"
// Disable fortran (and ipopt) for this build because
// we build a pkg from it and we do not want to depend
// on Fortran for now.
+ " -DOM_OMC_ENABLE_FORTRAN=OFF"
+ " -DOM_OMC_ENABLE_IPOPT=OFF"
)
sh "build/bin/omc --version"
// Create a product build package
Expand Down

0 comments on commit 1d45e82

Please sign in to comment.