Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
Core
Tor
Commits
5584b639
Commit
5584b639
authored
5 years ago
by
George Kadianakis
Browse files
Options
Downloads
Plain Diff
Merge branch 'maint-0.4.0'
parents
76f17639
2cc3c98b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.travis.yml
+10
-3
10 additions, 3 deletions
.travis.yml
changes/bug30011
+4
-0
4 additions, 0 deletions
changes/bug30011
with
14 additions
and
3 deletions
.travis.yml
+
10
−
3
View file @
5584b639
...
...
@@ -127,13 +127,16 @@ addons:
-
libseccomp-dev
## zstd doesn't exist in Ubuntu Trusty
#- libzstd
-
shellcheck
## Conditional build dependencies
## Always installed, so we don't need sudo
-
asciidoc
-
docbook-xsl
-
docbook-xml
-
xmlto
-
shellcheck
## Utilities
## preventing or diagnosing hangs
-
timelimit
## (OSX only)
homebrew
:
packages
:
...
...
@@ -153,11 +156,14 @@ addons:
-
pkg-config
## Optional build dependencies
-
ccache
-
shellcheck
## Conditional build dependencies
## Always installed, because manual brew installs are hard to get right
-
asciidoc
-
xmlto
-
shellcheck
## Utilities
## preventing or diagnosing hangs
-
timelimit
## (OSX only) Use the default OSX image
## See https://docs.travis-ci.com/user/reference/osx#os-x-version
...
...
@@ -209,7 +215,8 @@ script:
-
./configure $CONFIGURE_FLAGS
## We run `make check` because that's what https://jenkins.torproject.org does.
-
if [[ "$DISTCHECK" == "" && "$TEST_STEM" == "" ]]; then make check; fi
-
if [[ "$TEST_STEM" != "" ]]; then make src/app/tor test-stem; fi
## Diagnostic for bug 29437: kill stem if it hangs for 15 minutes
-
if [[ "$TEST_STEM" != "" ]]; then timelimit -p -t 540 -T 30 make src/app/tor test-stem; fi
-
if [[ "$DISTCHECK" != "" && "$TEST_STEM" == "" ]]; then make distcheck DISTCHECK_CONFIGURE_FLAGS="$CONFIGURE_FLAGS"; fi
## If this build was one that produced coverage, upload it.
-
if [[ "$COVERAGE_OPTIONS" != "" ]]; then coveralls -b . --exclude src/test --exclude src/trunnel --gcov-options '\-p' || echo "Coverage failed"; fi
...
...
This diff is collapsed.
Click to expand it.
changes/bug30011
0 → 100644
+
4
−
0
View file @
5584b639
o Minor bugfixes (CI):
- Terminate test-stem if it takes more than 9.5 minutes to run.
(Travis terminates the job after 10 minutes of no output.)
Diagnostic for 29437. Fixes bug 30011; bugfix on 0.3.5.4-alpha.
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment