Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
71251c72
Unverified
Commit
71251c72
authored
Sep 12, 2019
by
Péter Szilágyi
Committed by
GitHub
Sep 12, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #20058 from karalabe/go1.13
travis, Dockerfile, appveyor: bump to Go 1.13
parents
39b0b1a1
2469c4ec
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
16 additions
and
16 deletions
+16
-16
.travis.yml
.travis.yml
+12
-12
Dockerfile
Dockerfile
+1
-1
Dockerfile.alltools
Dockerfile.alltools
+1
-1
appveyor.yml
appveyor.yml
+2
-2
No files found.
.travis.yml
View file @
71251c72
...
@@ -18,15 +18,15 @@ jobs:
...
@@ -18,15 +18,15 @@ jobs:
-
stage
:
build
-
stage
:
build
os
:
linux
os
:
linux
dist
:
xenial
dist
:
xenial
go
:
1.1
0
.x
go
:
1.1
1
.x
script
:
script
:
-
go run build/ci.go install
-
go run build/ci.go install
-
go run build/ci.go test -coverage $TEST_PACKAGES
-
go run build/ci.go test -coverage $TEST_PACKAGES
-
stage
:
build
-
stage
:
build
os
:
linux
os
:
linux
dist
:
xenial
dist
:
xenial
go
:
1.1
1
.x
go
:
1.1
2
.x
script
:
script
:
-
go run build/ci.go install
-
go run build/ci.go install
-
go run build/ci.go test -coverage $TEST_PACKAGES
-
go run build/ci.go test -coverage $TEST_PACKAGES
...
@@ -35,14 +35,14 @@ jobs:
...
@@ -35,14 +35,14 @@ jobs:
-
stage
:
build
-
stage
:
build
os
:
linux
os
:
linux
dist
:
xenial
dist
:
xenial
go
:
1.1
2
.x
go
:
1.1
3
.x
script
:
script
:
-
go run build/ci.go install
-
go run build/ci.go install
-
go run build/ci.go test -coverage $TEST_PACKAGES
-
go run build/ci.go test -coverage $TEST_PACKAGES
-
stage
:
build
-
stage
:
build
os
:
osx
os
:
osx
go
:
1.1
2
.x
go
:
1.1
3
.x
script
:
script
:
-
echo "Increase the maximum number of open file descriptors on macOS"
-
echo "Increase the maximum number of open file descriptors on macOS"
-
NOFILE=20480
-
NOFILE=20480
...
@@ -61,7 +61,7 @@ jobs:
...
@@ -61,7 +61,7 @@ jobs:
if
:
type = push
if
:
type = push
os
:
linux
os
:
linux
dist
:
xenial
dist
:
xenial
go
:
1.1
2
.x
go
:
1.1
3
.x
env
:
env
:
-
ubuntu-ppa
-
ubuntu-ppa
git
:
git
:
...
@@ -85,7 +85,7 @@ jobs:
...
@@ -85,7 +85,7 @@ jobs:
os
:
linux
os
:
linux
dist
:
xenial
dist
:
xenial
sudo
:
required
sudo
:
required
go
:
1.1
2
.x
go
:
1.1
3
.x
env
:
env
:
-
azure-linux
-
azure-linux
git
:
git
:
...
@@ -121,7 +121,7 @@ jobs:
...
@@ -121,7 +121,7 @@ jobs:
dist
:
xenial
dist
:
xenial
services
:
services
:
-
docker
-
docker
go
:
1.1
2
.x
go
:
1.1
3
.x
env
:
env
:
-
azure-linux-mips
-
azure-linux-mips
git
:
git
:
...
@@ -167,7 +167,7 @@ jobs:
...
@@ -167,7 +167,7 @@ jobs:
git
:
git
:
submodules
:
false
# avoid cloning ethereum/tests
submodules
:
false
# avoid cloning ethereum/tests
before_install
:
before_install
:
-
curl https://dl.google.com/go/go1.1
2
.linux-amd64.tar.gz | tar -xz
-
curl https://dl.google.com/go/go1.1
3
.linux-amd64.tar.gz | tar -xz
-
export PATH=`pwd`/go/bin:$PATH
-
export PATH=`pwd`/go/bin:$PATH
-
export GOROOT=`pwd`/go
-
export GOROOT=`pwd`/go
-
export GOPATH=$HOME/go
-
export GOPATH=$HOME/go
...
@@ -185,7 +185,7 @@ jobs:
...
@@ -185,7 +185,7 @@ jobs:
-
stage
:
build
-
stage
:
build
if
:
type = push
if
:
type = push
os
:
osx
os
:
osx
go
:
1.1
2
.x
go
:
1.1
3
.x
env
:
env
:
-
azure-osx
-
azure-osx
-
azure-ios
-
azure-ios
...
@@ -216,7 +216,7 @@ jobs:
...
@@ -216,7 +216,7 @@ jobs:
if
:
type = cron
if
:
type = cron
os
:
linux
os
:
linux
dist
:
xenial
dist
:
xenial
go
:
1.1
2
.x
go
:
1.1
3
.x
env
:
env
:
-
azure-purge
-
azure-purge
git
:
git
:
...
...
Dockerfile
View file @
71251c72
# Build Geth in a stock Go builder container
# Build Geth in a stock Go builder container
FROM
golang:1.1
2
-alpine as builder
FROM
golang:1.1
3
-alpine as builder
RUN
apk add
--no-cache
make gcc musl-dev linux-headers git
RUN
apk add
--no-cache
make gcc musl-dev linux-headers git
...
...
Dockerfile.alltools
View file @
71251c72
# Build Geth in a stock Go builder container
# Build Geth in a stock Go builder container
FROM golang:1.1
2
-alpine as builder
FROM golang:1.1
3
-alpine as builder
RUN apk add --no-cache make gcc musl-dev linux-headers git
RUN apk add --no-cache make gcc musl-dev linux-headers git
...
...
appveyor.yml
View file @
71251c72
...
@@ -23,8 +23,8 @@ environment:
...
@@ -23,8 +23,8 @@ environment:
install
:
install
:
-
git submodule update --init
-
git submodule update --init
-
rmdir C:\go /s /q
-
rmdir C:\go /s /q
-
appveyor DownloadFile https://dl.google.com/go/go1.1
2.9
.windows-%GETH_ARCH%.zip
-
appveyor DownloadFile https://dl.google.com/go/go1.1
3
.windows-%GETH_ARCH%.zip
-
7z x go1.1
2.9
.windows-%GETH_ARCH%.zip -y -oC:\ > NUL
-
7z x go1.1
3
.windows-%GETH_ARCH%.zip -y -oC:\ > NUL
-
go version
-
go version
-
gcc --version
-
gcc --version
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment