Skip to content

Commit 7cf5f22

Browse files
committed
Disable the "all" Travis CI job
The job that tests install_ide "all" now usually exceeds the maximum job duration, causing the build to error. The only other option I could see is allowing failure for this job but it increases the build time a lot for something I usually won't bother to check. So I think it's better to just uncomment this line during testing of work that might affect the "all" functionality.
1 parent 9a30491 commit 7cf5f22

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ env:
1313
matrix:
1414
# Test install_ide with no argument (using full version list). This would cause the Travis CI build to take much longer so I have it disabled
1515
# - INSTALL_IDE_START_VERSION=""
16-
# Test install_ide using full version list
17-
- INSTALL_IDE_START_VERSION="all" VERBOSITY_LEVEL=0 VERBOSE_COMPILATION="false"
16+
# Test install_ide using full version list. This usually takes longer that the maximum job duration and thus errors the build so it must be disabled.
17+
#- INSTALL_IDE_START_VERSION="all" VERBOSITY_LEVEL=0 VERBOSE_COMPILATION="false"
1818
# Test install_ide using custom version list. Test the use of the special version names "oldest" and "newest" in a version list. Test use of "hourly" version name.
1919
- INSTALL_IDE_START_VERSION='("oldest" "1.8.1" "1.8.2" "newest" "hourly")' VERBOSITY_LEVEL=1 VERBOSE_COMPILATION="true"
2020
# Allowed to fail

0 commit comments

Comments
 (0)