aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
AgeCommit message (Collapse)Author
2019-12-03Merge branch 'maint-0.3.5' into maint-0.4.0teor
2019-12-03Travis: use -std=gnu99 with NSS, and clang with Chutneyteor
NSS: * test NSS-specific code with -std=gnu99 * use a recent gcc version from the latest Ubuntu image Chutney: * use clang, so we keep one clang Linux job * keep clang on a fast job, so the overall build finishes quickly Closes ticket 32500 for 0.3.5.
2019-12-03Merge branch 'maint-0.2.9' into maint-0.3.5teor
Merge C_DIALECT_OPTIONS from ticket32500_029 with other configure options from maint-0.3.5.
2019-12-03Travis: use -std=gnu99 in some jobsteor
Require C99 standards-conforming code in Travis CI, but allow GNU gcc extensions. Also activates clang's -Wtypedef-redefinition warnings. Builds some jobs with -std=gnu99, and some jobs without. Closes ticket 32500.
2019-10-29Merge branch 'maint-0.3.5' into maint-0.4.0teor
2019-10-29Merge branch 'maint-0.2.9' into maint-0.3.5teor
2019-10-29Merge remote-tracking branch 'tor-github/pr/1460' into maint-0.2.9teor
2019-10-25Merge branch 'maint-0.3.5' into maint-0.4.0teor
2019-10-25Merge branch 'ticket31919_bionic_029' into ticket31919_bionic_035teor
2019-10-25Travis: Use Ubuntu Bionic, but keep Trusty for chutneyteor
Bionic has a recent coccinelle version, which passes our CI tests. But Bionic (and Xenial) cause permissions errors for chutney. We'll fix those in 32240. Part of 31919.
2019-10-24Travis: Use macOS 10.14 with Xcode 11.2teor
Closes ticket 32241.
2019-10-23Merge remote-tracking branch 'tor-github/pr/1361' into maint-0.4.0teor
2019-10-23Merge remote-tracking branch 'tor-github/pr/1360' into maint-0.3.5teor
2019-10-23Merge remote-tracking branch 'tor-github/pr/1351' into maint-0.2.9teor
2019-10-22Merge branch 'maint-0.3.5' into maint-0.4.0teor
2019-10-22Travis: Disable the Rust macOS buildteor
This build was added in 0.3.5. We need to mitigate slow scheduling of Travis macOS jobs. Closes ticket 32177.
2019-10-22Merge branch 'ticket32177_029' into ticket32177_035teor
Stem from maint-0.3.5, disabled macOS chutney from ticket32177_029.
2019-10-22Travis: Disable all but one macOS buildteor
We need to mitigate slow scheduling of Travis macOS jobs. Closes ticket 32177.
2019-10-17Merge branch 'maint-0.3.5' into maint-0.4.0teor
2019-10-01Travis: Keep the macOS Rust job, but don't wait for it to finishteor
Since Rust on macOS is slow, don't wait for the macOS Rust job to finish. Instead, split rust into slow rust (macOS) and fast rust (Linux). And allow the build to finish before slow rust finishes. Also make sure that we have: * a Rust build on each platform, * a Rust build with each compiler, and * a check on all our Rust builds. Finally, sort builds: allow fail last, macOS first, slowest first. Closes 31859 for 0.3.5.
2019-10-01Travis: Split jobs, add essential jobs, remove redundant jobsteor
Part of 31859 for 0.3.5.
2019-10-01Merge branch 'bug31859_029' into bug31859_035teor
While merging: * leave out some redundant jobs and build matrix entries
2019-09-30Travis: Add a macOS chutney job, but don't wait for it to finishteor
Since Travis macOS has IPv6 support (and Travis Linux does not), chutney will now run its IPv6 networks as part of Travis CI. But since chutney is slow, don't wait for the macOS chutney to finish. (Travis have fixed the duplicate notification bug in fast_finish. So we can use fast_finish and allow_failure to finish early. Unfortunately, allow_failure also means we ignore failures in macOS chutney.) Also make sure that we have: * a compile on each platform, with each compiler, * a check on each platform, and * a check on each compiler. Finally, sort builds: allow fail last, macOS first, slowest first. Closes ticket 30860. Closes ticket 31859 for 0.2.9.
2019-09-30Travis: Remove a redundant clang Linux jobteor
Part of 31859.
2019-09-26Travis: Unroll the build matrix into matrix: include:teor
The jobs should be the same, but Travis may display them differently. Part of 31859.
2019-09-24Merge branch 'ticket31372_035' into ticket31372_040Nick Mathewson
2019-09-24Merge branch 'ticket31372_029' into ticket31372_035Nick Mathewson
2019-09-23Try using make -k in Travis configurationNick Mathewson
Frequently, when a patch fails, it has failures in several files. Using the "-k" flag will let us learn all the compilation errors, not just the first one that the compiler hits. Based on a patch by rl1987.
2019-08-27Merge branch 'maint-0.3.5' into maint-0.4.0George Kadianakis
2019-08-22Fix gcc build exclude on travisSebastian Hahn
The main build doesn't use HARDENING_OPTIONS, so the exclude shouldn't, either. Reduces the number of builders by one.
2019-08-08Merge branch 'maint-0.3.5' into maint-0.4.0teor
2019-08-08Merge remote-tracking branch 'tor-github/pr/1044' into maint-0.3.5teor
Merge changed chutney and stem script lines from 29280 with changed stem script lines from 30591.
2019-08-08Merge remote-tracking branch 'tor-github/pr/1155' into maint-0.2.9teor
2019-07-01Merge branch 'chutney_ci_v4_035' into chutney_ci_v4_040teor
This merge removes an incorrect comment about the stem version and commit script.
2019-07-01Travis: SKIP_MAKE_CHECK="yes" when running stemteor
And add some comments about stem Part of 29280.
2019-07-01Merge branch 'chutney_ci_v4_029' into chutney_ci_v4_035teor
2019-07-01Travis: remove a redundant os: linux lineteor
Linux is the first item in the os matrix, so we don't need to specify it under matrix: include: . Part of 29280.
2019-07-01Travis: show the chutney commit and python versionteor
Part of 29280.
2019-07-01Travis: show chutney logs on chutney job failureteor
Part of 29280.
2019-07-01Travis: Log stem's TRACE logs to a file, and tail it on failureteor
Also filter out stem's SocketClosed logs, and fix some nearby comments. Part of 30591.
2019-06-14Travis: Don't log stem's SocketClosed TRACE logs to the consoleteor
And fix some nearby comments. Part of 30591.
2019-06-12Add a chutney mode to travis.yml.Nick Mathewson
2019-06-12Travis: control "make check" with its own flagNick Mathewson
Previously we had "make check" launched whenever DISTCHECK was false. Now we'd like to turn it off in a few other circumstances, like running chutney. Maybe stem too?
2019-06-11Merge remote-tracking branch 'tor-github/pr/1094' into maint-0.3.5teor
2019-06-11Merge remote-tracking branch 'tor-github/pr/1091' into maint-0.3.5teor
2019-06-11Merge remote-tracking branch 'tor-github/pr/990' into maint-0.3.5teor
2019-06-10Merge remote-tracking branch 'tor-github/pr/1094' into maint-0.4.0Nick Mathewson
2019-06-10Merge branch 'bug30713_035' into bug30713_040teor
2019-06-10Travis: Skip test_rebind on macOS buildsteor
Skip test_rebind when the TOR_SKIP_TEST_REBIND environmental variable is set. Skip test_rebind on macOS in Travis builds, because it is unreliable on macOS on Travis. Fixes bug 30713; bugfix on 0.3.5.1-alpha.
2019-06-10Travis: allow the test-stem job to failteor
Allow the test-stem job to fail in Travis, because it sometimes hangs. Fixes bug 30744; bugfix on 0.3.5.4-alpha.