forked from AcademySoftwareFoundation/OpenShadingLanguage
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update CI idioms (AcademySoftwareFoundation#1338)
* Separate the CI stages into separate steps. (As was prototyped in OIIO) * Combine the dependency-building scripts for CentOS and Ubuntu into a single script. * Get rid of cruft related to the CI systems we no longer use (Appveyor, Travis, CircleCI). * Get rid of some needless CI verbosity Signed-off-by: Larry Gritz <[email protected]>
- Loading branch information
Showing
14 changed files
with
471 additions
and
591 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
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
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,22 @@ | ||
#!/usr/bin/env bash | ||
|
||
# Copyright Contributors to the Open Shading Language project. | ||
# SPDX-License-Identifier: BSD-3-Clause | ||
# https://github.com/AcademySoftwareFoundation/OpenShadingLanguage | ||
|
||
# Important: set -ex causes this whole script to terminate with error if | ||
# any command in it fails. This is crucial for CI tests. | ||
set -ex | ||
|
||
$OSL_ROOT/bin/testshade --help | ||
|
||
echo "Parallel test " ${CTEST_PARALLEL_LEVEL} | ||
pushd build/$PLATFORM | ||
time ctest -C ${CMAKE_BUILD_TYPE} -E broken --force-new-ctest-process \ | ||
--output-on-failure --timeout ${CTEST_TEST_TIMEOUT:=180} ${CTEST_ARGS} | ||
popd | ||
|
||
|
||
# if [[ "$CODECOV" == 1 ]] ; then | ||
# bash <(curl -s https://codecov.io/bash) | ||
# fi |
Oops, something went wrong.