-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* simplified run dependencies * MNT: Re-rendered with conda-build 24.5.1, conda-smithy 3.36.2, and conda-forge-pinning 2024.07.10.17.49.47 * +=1 * use occt7.8.1 branch * disable netgen * simplifications * Rebuild for occt 7.8.1 * MNT: Re-rendered with conda-build 24.5.1, conda-smithy 3.36.2, and conda-forge-pinning 2024.07.14.16.05.21 * enable netgen * remove unused med cmake specification * vtk-base, debug builds * MNT: Re-rendered with conda-build 24.5.1, conda-smithy 3.37.0, and conda-forge-pinning 2024.07.17.12.11.55 * depend on package vtk, otherwise it's not listed in ci_support files * MNT: Re-rendered with conda-build 24.5.1, conda-smithy 3.37.1, and conda-forge-pinning 2024.07.17.19.24.35 * use release * update sha256sum * remove unnecessary dependencies * update sha256 sum * update path to LICENSE.txt * Update sha256sum * update test commands * cross compile for linux_aarch64 and ppc64 * MNT: Re-rendered with conda-build 24.5.1, conda-smithy 3.37.1, and conda-forge-pinning 2024.07.18.19.29.01 * further simplifications * ninja -C build * changed location of test-files * Update run_test.bat --------- Co-authored-by: regro-cf-autotick-bot <[email protected]>
- Loading branch information
1 parent
6b1f91e
commit 087a77a
Showing
15 changed files
with
72 additions
and
109 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
__migrator: | ||
build_number: 1 | ||
commit_message: Rebuild for occt 7.8.1 | ||
kind: version | ||
migration_number: 1 | ||
migrator_ts: 1714946042.220433 | ||
occt: | ||
- 7.8.1 |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,23 +1,15 @@ | ||
git clone https://github.com/realthunder/SMESH.git | ||
cd SMESH | ||
git checkout patch-4 | ||
git submodule update --init --recursive | ||
python prepare.py | ||
|
||
mkdir build | ||
cd build | ||
|
||
cmake -G "Ninja" ^ | ||
-D CMAKE_BUILD_TYPE=Release ^ | ||
-D CMAKE_INSTALL_PREFIX:FILEPATH="%LIBRARY_PREFIX%" ^ | ||
-D CMAKE_PREFIX_PATH:FILEPATH="%LIBRARY_PREFIX%" ^ | ||
-D CMAKE_SYSTEM_PREFIX_PATH:FILEPATH="%LIBRARY_PREFIX%" ^ | ||
-D PTHREAD_INCLUDE_DIRS:FILEPATH="%LIBRARY_PREFIX%/include" ^ | ||
-D PTHREAD_LIB_DIRS:FILEPATH="%LIBRARY_PREFIX%/lib" ^ | ||
-D Boost_NO_BOOST_CMAKE:BOOL=ON ^ | ||
-D ENABLE_LIB_NAMING:BOOL=OFF ^ | ||
.. | ||
-B build -S . ^ | ||
-D CMAKE_BUILD_TYPE=Release ^ | ||
-D CMAKE_INSTALL_PREFIX:FILEPATH="%LIBRARY_PREFIX%" ^ | ||
-D CMAKE_PREFIX_PATH:FILEPATH="%LIBRARY_PREFIX%" ^ | ||
-D CMAKE_SYSTEM_PREFIX_PATH:FILEPATH="%LIBRARY_PREFIX%" ^ | ||
-D PTHREAD_INCLUDE_DIRS:FILEPATH="%LIBRARY_PREFIX%/include" ^ | ||
-D PTHREAD_LIB_DIRS:FILEPATH="%LIBRARY_PREFIX%/lib" ^ | ||
-D ENABLE_NETGEN:BOOL=ON ^ | ||
-D Boost_NO_BOOST_CMAKE:BOOL=ON ^ | ||
-D ENABLE_LIB_NAMING:BOOL=OFF | ||
|
||
if errorlevel 1 exit 1 | ||
ninja install | ||
ninja -C build install | ||
if errorlevel 1 exit 1 |
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,20 +1,9 @@ | ||
git clone https://github.com/realthunder/SMESH.git | ||
cd SMESH | ||
git checkout patch-4 | ||
git submodule update --init --recursive | ||
python prepare.py | ||
|
||
mkdir build | ||
cd build | ||
|
||
cmake -G "Ninja" \ | ||
-D CMAKE_BUILD_TYPE:STRING="Release" \ | ||
-B build -S . \ | ||
-D CMAKE_BUILD_TYPE:STRING=$BUILD_TYPE \ | ||
-D CMAKE_INSTALL_PREFIX:FILEPATH=$PREFIX \ | ||
-D CMAKE_PREFIX_PATH:FILEPATH=$PREFIX \ | ||
-D Boost_NO_BOOST_CMAKE:BOOL=ON \ | ||
-D ENABLE_MED:BOOL=OFF \ | ||
-D ENABLE_NETGEN:BOOL=ON \ | ||
-D CMAKE_CXX_STANDARD=14 \ | ||
.. | ||
-D ENABLE_NETGEN:BOOL=ON | ||
|
||
ninja install | ||
ninja -C build install |
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,22 +1,16 @@ | ||
cd SMESH/test | ||
mkdir build | ||
cd build | ||
|
||
cmake -G "Ninja" ^ | ||
-D CMAKE_BUILD_TYPE=Release ^ | ||
-D CMAKE_PREFIX_PATH:FILEPATH="%LIBRARY_PREFIX%" ^ | ||
-D CMAKE_SYSTEM_PREFIX_PATH:FILEPATH="%LIBRARY_PREFIX%" ^ | ||
-D PTHREAD_INCLUDE_DIRS:FILEPATH="%LIBRARY_PREFIX%/include" ^ | ||
-D PTHREAD_LIB_DIRS:FILEPATH="%LIBRARY_PREFIX%/lib" ^ | ||
.. | ||
-B test/build -S test/. ^ | ||
-D CMAKE_BUILD_TYPE=Release ^ | ||
-D CMAKE_PREFIX_PATH:FILEPATH="%LIBRARY_PREFIX%" ^ | ||
-D CMAKE_SYSTEM_PREFIX_PATH:FILEPATH="%LIBRARY_PREFIX%" ^ | ||
-D PTHREAD_INCLUDE_DIRS:FILEPATH="%LIBRARY_PREFIX%/include" ^ | ||
-D PTHREAD_LIB_DIRS:FILEPATH="%LIBRARY_PREFIX%/lib" ^ | ||
|
||
if errorlevel 1 exit 1 | ||
ninja install | ||
ninja -C test/build install | ||
if errorlevel 1 exit 1 | ||
|
||
cd .. | ||
cd tests | ||
test_Catch.exe | ||
test_StdMeshers.exe | ||
test_NETGENPlugin.exe | ||
test_MEFISTO2.exe | ||
test/tests/test_Catch.exe | ||
test/tests/test_StdMeshers.exe | ||
test/tests/test_NETGENPlugin.exe | ||
test/tests/test_MEFISTO2.exe |
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