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
7fe169a5
Commit
7fe169a5
authored
5 years ago
by
George Kadianakis
Browse files
Options
Downloads
Plain Diff
Merge branch 'tor-github/pr/879' into maint-0.4.0
parents
217db9ef
db71bceb
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.travis.yml
+11
-4
11 additions, 4 deletions
.travis.yml
Makefile.am
+3
-1
3 additions, 1 deletion
Makefile.am
changes/bug29036
+5
-0
5 additions, 0 deletions
changes/bug29036
changes/ticket29962
+3
-0
3 additions, 0 deletions
changes/ticket29962
with
22 additions
and
5 deletions
.travis.yml
+
11
−
4
View file @
7fe169a5
...
...
@@ -5,8 +5,10 @@ cache:
## cargo: true
directories
:
-
$HOME/.cargo
## caching CARGO_TARGET_DIR actually slows down the build over time,
## because old build products are never deleted.
## where we point CARGO_TARGET_DIR in all our cargo invocations
-
$TRAVIS_BUILD_DIR/src/rust/target
#
- $TRAVIS_BUILD_DIR/src/rust/target
compiler
:
-
gcc
...
...
@@ -209,6 +211,8 @@ script:
-
if [[ "$DISTCHECK" == "" && "$TEST_STEM" == "" ]]; then make check; fi
-
if [[ "$TEST_STEM" != "" ]]; then 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
after_failure
:
## configure will leave a log file with more details of config failures.
...
...
@@ -220,9 +224,12 @@ after_failure:
-
if [[ "$DISTCHECK" != "" ]]; then make show-distdir-testlog || echo "make failed"; fi
-
if [[ "$DISTCHECK" != "" ]]; then make show-distdir-core || echo "make failed"; fi
after_success
:
## 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'; fi
before_cache
:
## Delete all gcov files.
-
if [[ "$COVERAGE_OPTIONS" != "" ]]; then make reset-gcov; fi
## Delete the cargo registry before caching .cargo, because it's cheaper to
## download the registry and throw it away, rather than caching it
-
rm -rf $HOME/.cargo/registry
notifications
:
irc
:
...
...
This diff is collapsed.
Click to expand it.
Makefile.am
+
3
−
1
View file @
7fe169a5
...
...
@@ -295,8 +295,10 @@ test-full: need-stem-path need-chutney-path check test-network test-stem
test-full-online
:
need-stem-path need-chutney-path check test-network test-stem-full
# We can't delete the gcno files, because they are created when tor is compiled
reset-gcov
:
rm
-f
$(
top_builddir
)
/src/
*
/
*
.gcda
$(
top_builddir
)
/src/
*
/
*
/
*
.gcda
rm
-f
$(
top_builddir
)
/src/
*
/
*
.gcda
$(
top_builddir
)
/src/
*
/
*
/
*
.gcda
\
$(
top_builddir
)
/src/
*
/
*
.gcov
$(
top_builddir
)
/src/
*
/
*
/
*
.gcov
HTML_COVER_DIR
=
$(
top_builddir
)
/coverage_html
coverage-html
:
all
...
...
This diff is collapsed.
Click to expand it.
changes/bug29036
0 → 100644
+
5
−
0
View file @
7fe169a5
o Minor bugfix (continuous integration):
- Reset coverage state on disk after Travis CI has finished. This is being
done to prevent future gcda file merge errors which causes the test suite
for the process subsystem to fail. The process subsystem was introduced
in 0.4.0.1-alpha. Fixes bug 29036; bugfix on 0.2.9.15.
This diff is collapsed.
Click to expand it.
changes/ticket29962
0 → 100644
+
3
−
0
View file @
7fe169a5
o Minor features (continuous integration):
- On Travis Rust builds, cleanup Rust registry and refrain from caching
target/ directory to speed up builds. Resolves issue 29962.
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