Skip to content

Commit e0c4338

Browse files
authored
Merge pull request #1695 from celo-org/trianglesphere/work
Merge v1.10.7
2 parents 516166d + 0726834 commit e0c4338

File tree

595 files changed

+46300
-22812
lines changed

Some content is hidden

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

595 files changed

+46300
-22812
lines changed

.circleci/config.yml

+3-4
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ executors:
3939
# b16a2d472a7cf24858f9d8b33a7185c8b81a261a is the current commit on master as of August 25, 2021, and
4040
# includes contracts release 5 (core-contracts.v5)
4141
CELO_MONOREPO_COMMIT_OR_BRANCH: b16a2d472a7cf24858f9d8b33a7185c8b81a261a
42-
4342
GITHUB_RSA_FINGERPRINT: SHA256:nThbg6kXUpJWGl7E1IGOCspRomTxdCARLviKw6E5SY8
4443
# Unfortunately we cannot use anchors to represent a set of standard steps and
4544
# then add or override one or more of those steps when referencing the anchor.
@@ -251,7 +250,7 @@ jobs:
251250
command: |
252251
mkdir -p /tmp/test-results
253252
go run build/ci.go ensure-linter
254-
./build/cache/golangci-lint-1.25.0-linux-amd64/golangci-lint run --config .golangci.yml --out-format junit-xml ./... | tee /tmp/test-results/go-lint-report.xml
253+
./build/cache/golangci-lint-1.39.0-linux-amd64/golangci-lint run --config .golangci.yml --out-format junit-xml ./... | tee /tmp/test-results/go-lint-report.xml
255254
- store_artifacts:
256255
path: /tmp/test-results
257256
destination: raw-test-output
@@ -268,7 +267,7 @@ jobs:
268267

269268
android:
270269
docker:
271-
- image: celohq/circleci:android-v2
270+
- image: us.gcr.io/celo-testnet/android:v3
272271
working_directory: ~/repos/geth
273272
steps:
274273
- checkout
@@ -282,7 +281,7 @@ jobs:
282281

283282
ios:
284283
macos:
285-
xcode: "11.3.1"
284+
xcode: "12.5.1"
286285
working_directory: ~/repos/geth
287286
steps:
288287
- checkout

.golangci.yml

+9-9
Original file line numberDiff line numberDiff line change
@@ -12,21 +12,21 @@ run:
1212
linters:
1313
disable-all: true
1414
enable:
15-
# - deadcode
16-
# - errcheck
15+
- deadcode
16+
- goconst
17+
- goimports
1718
- gosimple
1819
- govet
1920
- ineffassign
20-
- staticcheck
21-
- unused
21+
- misspell
22+
# - staticcheck
23+
- unconvert
24+
# - unused
2225
- varcheck
2326

24-
- goconst
25-
- goimports
26-
- gosec
27-
- misspell
27+
# - gosec
28+
# - errcheck
2829
# - prealloc
29-
- unconvert
3030
# - unparam
3131

3232
linters-settings:

.travis.yml

-303
This file was deleted.

Dockerfile

+7
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,10 @@ ADD scripts/run_geth_in_docker.sh /
3333

3434
EXPOSE 8545 8546 30303 30303/udp
3535
ENTRYPOINT ["sh", "/run_geth_in_docker.sh"]
36+
37+
# Add some metadata labels to help programatic image consumption
38+
ARG COMMIT=""
39+
ARG VERSION=""
40+
ARG BUILDNUM=""
41+
42+
LABEL commit="$COMMIT" version="$VERSION" buildnum="$BUILDNUM"

Dockerfile.alltools

+7
Original file line numberDiff line numberDiff line change
@@ -15,3 +15,10 @@ COPY --from=builder /go-ethereum/build/bin/* /usr/local/bin/
1515
RUN echo $COMMIT_SHA > /version.txt
1616

1717
EXPOSE 8545 8546 30303 30303/udp
18+
19+
# Add some metadata labels to help programatic image consumption
20+
ARG COMMIT=""
21+
ARG VERSION=""
22+
ARG BUILDNUM=""
23+
24+
LABEL commit="$COMMIT" version="$VERSION" buildnum="$BUILDNUM"

0 commit comments

Comments
 (0)