Skip to content

Commit 68eba02

Browse files
Remove most of the remaining geth code and set up bazel (prysmaticlabs#235)
* Remove most of the remaining geth code and set up bazel for this * chmod +x * Add flake check * better flake detection Former-commit-id: 5c332ecbf2923943f646f1fe40befa95be883329 [formerly 99590fc] Former-commit-id: e5f919b
1 parent 6918dc4 commit 68eba02

File tree

2,158 files changed

+946
-779707
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,158 files changed

+946
-779707
lines changed

.dockerignore

-9
This file was deleted.

.gitignore

+2-47
Original file line numberDiff line numberDiff line change
@@ -1,47 +1,2 @@
1-
# See http://help.github.com/ignore-files/ for more about ignoring files.
2-
#
3-
# If you find yourself ignoring temporary files generated by your text editor
4-
# or operating system, you probably want to add a global ignore instead:
5-
# git config --global core.excludesfile ~/.gitignore_global
6-
7-
/tmp
8-
*/**/*un~
9-
*/**/*.test
10-
*un~
11-
.DS_Store
12-
*/**/.DS_Store
13-
.ethtest
14-
*/**/*tx_database*
15-
*/**/*dapps*
16-
build/_vendor/pkg
17-
18-
#*
19-
.#*
20-
*#
21-
*~
22-
.project
23-
.settings
24-
25-
# used by the Makefile
26-
/build/_workspace/
27-
/build/bin/
28-
/geth*.zip
29-
30-
# travis
31-
profile.tmp
32-
profile.cov
33-
34-
# IdeaIDE
35-
.idea
36-
37-
# VS Code
38-
.vscode
39-
40-
# dashboard
41-
/dashboard/assets/flow-typed
42-
/dashboard/assets/node_modules
43-
/dashboard/assets/stats.json
44-
/dashboard/assets/bundle.js
45-
/dashboard/assets/package-lock.json
46-
47-
**/yarn-error.log
1+
# Ignore bazel directories
2+
bazel-*

.gitmodules

-3
This file was deleted.

.mailmap

-123
This file was deleted.

.travis-bazelrc

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# TODO: Set up remote caching.
2+
3+
startup --host_jvm_args=-Xmx500m --host_jvm_args=-Xms500m
4+
5+
# Disable sandboxing since it may fail inside of Travis' containers because the
6+
# mount system call is not permitted.
7+
build --spawn_strategy=standalone --genrule_strategy=standalone
8+
9+
# Set some build options for travis container.
10+
build --local_resources=1536,1.5,0.5
11+
build --noshow_progress
12+
build --verbose_failures
13+
build --sandbox_debug
14+
build --test_output=errors
15+
build --flaky_test_attempts=5

0 commit comments

Comments
 (0)