-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
CI job with minimal dependencies (#40)
- Loading branch information
Showing
9 changed files
with
135 additions
and
59 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 |
---|---|---|
@@ -0,0 +1,56 @@ | ||
Dockerfile | ||
#Git files | ||
.git | ||
.git-blame-ignore-revs | ||
.github | ||
.gitignore | ||
#The remainder is based on .gitignore | ||
**/config.h | ||
**/CompileInfo.cpp | ||
**/CMakeOptions.cpp | ||
**/CMakeOptions.h | ||
/src/carl/config.h | ||
#Visual Studio files | ||
*.[Oo]bj | ||
*.user | ||
*.aps | ||
*.pch | ||
*.vspscc | ||
*.vssscc | ||
*_i.c | ||
*_p.c | ||
*.ncb | ||
*.suo | ||
*.tlb | ||
*.tlh | ||
*.bak | ||
*.[Cc]ache | ||
*.ilk | ||
*.log | ||
*.lib | ||
*.sbr | ||
*.sdf | ||
*.tlog | ||
*.lastbuildstate | ||
*.pdb | ||
*.idb | ||
*.opensdf | ||
*.unsuccessfulbuild | ||
ipch/ | ||
obj/ | ||
CMakeFiles/ | ||
CPackConfig.cmake | ||
# The build Dir | ||
/*build*/ | ||
build//CMakeLists.txt | ||
/*.vcxproj | ||
/*.filters | ||
/*.sln | ||
#Temp texteditor files | ||
*.orig | ||
*.*~ | ||
nbproject/ | ||
.DS_Store | ||
.idea | ||
.vscode | ||
*.out |
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,16 +1,49 @@ | ||
**/*~ | ||
**/*.pyc | ||
.idea | ||
.DS_Store | ||
.vscode | ||
build/** | ||
nbproject/ | ||
/resources/log4cplus-1.1.1/include/log4cplus/config/defines.hxx.cmake | ||
/resources/log4cplus-1.1.1/include/log4cplus/config/defines.hxx | ||
**/config.h | ||
**/CompileInfo.cpp | ||
**/CMakeOptions.cpp | ||
**/CMakeOptions.h | ||
/src/carl/config.h | ||
/src/carl/thom/todos | ||
/src/carl/thom/todo | ||
#Visual Studio files | ||
*.[Oo]bj | ||
*.user | ||
*.aps | ||
*.pch | ||
*.vspscc | ||
*.vssscc | ||
*_i.c | ||
*_p.c | ||
*.ncb | ||
*.suo | ||
*.tlb | ||
*.tlh | ||
*.bak | ||
*.[Cc]ache | ||
*.ilk | ||
*.log | ||
*.lib | ||
*.sbr | ||
*.sdf | ||
*.tlog | ||
*.lastbuildstate | ||
*.pdb | ||
*.idb | ||
*.opensdf | ||
*.unsuccessfulbuild | ||
ipch/ | ||
obj/ | ||
CMakeFiles/ | ||
CPackConfig.cmake | ||
# The build Dir | ||
/*build*/ | ||
build//CMakeLists.txt | ||
/*.vcxproj | ||
/*.filters | ||
/*.sln | ||
#Temp texteditor files | ||
*.orig | ||
*.*~ | ||
nbproject/ | ||
.DS_Store | ||
.idea | ||
.vscode | ||
*.out |
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 |
---|---|---|
|
@@ -105,9 +105,6 @@ if(APPLE AND ${CMAKE_SYSTEM_PROCESSOR} MATCHES arm64) | |
message(STATUS "Detected that target system uses Apple Silicon.") | ||
message(WARNING "Compiling natively on Apple Silicon is experimental. Please report issues to [email protected]. For more information visit https://www.stormchecker.org/documentation/obtain-storm/apple-silicon.html") | ||
set(APPLE_SILICON 1) | ||
message(WARNING "CLN and GiNaC are currently not supported on Apple Silicon-based architectures. Disabling usage of the libraries.") | ||
set(USE_CLN_NUMBERS OFF) | ||
set(USE_GINAC OFF) | ||
endif() | ||
|
||
foreach(p LIB BIN INCLUDE CMAKE) | ||
|
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