Skip to content

Commit 742c464

Browse files
authored
Remove ancient TRAVIS CI checks from build scripts (#1757)
1 parent 17289f7 commit 742c464

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

scripts/buildAmici.sh

+2-3
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@ amici_build_dir="${amici_path}/build"
1313
mkdir -p "${amici_build_dir}"
1414
cd "${amici_build_dir}"
1515

16-
if [ "${TRAVIS:-}" = true ] ||
17-
[ "${GITHUB_ACTIONS:-}" = true ] ||
16+
if [ "${GITHUB_ACTIONS:-}" = true ] ||
1817
[ "${ENABLE_AMICI_DEBUGGING:-}" = TRUE ]; then
1918
# Running on CI server
2019
build_type="Debug"
@@ -32,7 +31,7 @@ if [ "${CI_SONARCLOUD:-}" = "TRUE" ]; then
3231
build-wrapper-linux-x86-64 \
3332
--out-dir "${amici_path}/bw-output" \
3433
cmake --build . --parallel
35-
elif [ "${TRAVIS:-}" = "true" ]; then
34+
elif [ "${GITHUB_ACTIONS:-}" = "true" ]; then
3635
cmake --build .
3736
${make} python-sdist
3837
else

scripts/buildSundials.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ sundials_build_path="${amici_path}/ThirdParty/sundials/build/"
1414
cmake=${CMAKE:-cmake}
1515
make=${MAKE:-make}
1616

17-
if [[ $TRAVIS = true ]]; then
17+
if [[ $GITHUB_ACTIONS = true ]]; then
1818
# Running on CI server
1919
build_type="Debug"
2020
else

0 commit comments

Comments
 (0)