-
Notifications
You must be signed in to change notification settings - Fork 285
New issue
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
Installation test with CI #362
Comments
diff --git a/ci/script_linux.sh b/ci/script_linux.sh
index 82eb3f3..283bfc3 100755
--- a/ci/script_linux.sh
+++ b/ci/script_linux.sh
@@ -1,6 +1,7 @@
make
sudo ldconfig --verbose # So the test executeables can detect libtinyxml2
if [ $BUILD_CORE_ONLY = OFF ]; then make test; fi
+ sudo make install
# cd tools/
# ./code_check.sh
- # ./abi_check.sh 4.1.0 # Check with DART 4.1.0
\ No newline at end of file
+ # ./abi_check.sh 4.1.0 # Check with DART 4.1.0
diff --git a/ci/script_osx.sh b/ci/script_osx.sh
index 844bb27..12e416e 100755
--- a/ci/script_osx.sh
+++ b/ci/script_osx.sh
@@ -1,5 +1,6 @@
make
if [ $BUILD_CORE_ONLY = OFF ]; then make test; fi
+sudo make install
# cd tools/
# ./code_check.sh
-# ./abi_check.sh 4.1.0 # Check with DART 4.1.0
\ No newline at end of file
+# ./abi_check.sh 4.1.0 # Check with DART 4.1.0 |
Thanks! I added additional script that tries to build simple DART dependent application. Would this work to prevent errors like #351? |
Yeah, that looks like it would help. We test example code that uses cmake |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed in 7 days if no further activity occurs. Thank you for your contributions. |
Addressed by #998 |
DART uses CI services of Travis CI and AppVeyor for build and unit tests but not installation.
The text was updated successfully, but these errors were encountered: