CI: debug building geth
This commit is contained in:
parent
a3eefffb3a
commit
8e62b50742
21
.github/workflows/build.yml
vendored
21
.github/workflows/build.yml
vendored
@ -9,4 +9,23 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Run docker build
|
- name: Run docker build
|
||||||
run: docker build -t vulcanize/ethereum -f Dockerfile .
|
run: docker build -t vulcanize/ethereum -f Dockerfile.amd64 .
|
||||||
|
- name: Get the version
|
||||||
|
id: vars
|
||||||
|
run: echo ::set-output name=sha::$(echo ${GITHUB_SHA:0:7})
|
||||||
|
- name: Run docker build
|
||||||
|
run: docker build -t vulcanize/ethereum -f Dockerfile.amd64 .
|
||||||
|
- name: Tag docker image
|
||||||
|
run: docker tag vulcanize/ethereum docker.pkg.github.com/vulcanize/go-ethereum/go-ethereum:${{steps.vars.outputs.sha}}
|
||||||
|
- name: Docker Login
|
||||||
|
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login https://docker.pkg.github.com -u vulcanize --password-stdin
|
||||||
|
- name: Docker Push
|
||||||
|
run: docker push docker.pkg.github.com/vulcanize/go-ethereum/go-ethereum:${{steps.vars.outputs.sha}}
|
||||||
|
- name: Docker Pull
|
||||||
|
run: docker pull docker.pkg.github.com/vulcanize/go-ethereum/go-ethereum:${{steps.vars.outputs.sha}}
|
||||||
|
- name: Copy ethereum binary file
|
||||||
|
run: docker run --rm --entrypoint cat docker.pkg.github.com/vulcanize/go-ethereum/go-ethereum /usr/local/bin/geth > geth-linux-amd64
|
||||||
|
- uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: my-artifact
|
||||||
|
path: geth-linux-amd64
|
2
.github/workflows/on-master.yaml
vendored
2
.github/workflows/on-master.yaml
vendored
@ -15,7 +15,7 @@ jobs:
|
|||||||
id: vars
|
id: vars
|
||||||
run: echo ::set-output name=sha::$(echo ${GITHUB_SHA:0:7})
|
run: echo ::set-output name=sha::$(echo ${GITHUB_SHA:0:7})
|
||||||
- name: Run docker build
|
- name: Run docker build
|
||||||
run: docker build -t vulcanize/ethereum -f Dockerfile .
|
run: docker build -t vulcanize/ethereum -f Dockerfile.amd64 .
|
||||||
- name: Tag docker image
|
- name: Tag docker image
|
||||||
run: docker tag vulcanize/ethereum docker.pkg.github.com/vulcanize/go-ethereum/go-ethereum:${{steps.vars.outputs.sha}}
|
run: docker tag vulcanize/ethereum docker.pkg.github.com/vulcanize/go-ethereum/go-ethereum:${{steps.vars.outputs.sha}}
|
||||||
- name: Docker Login
|
- name: Docker Login
|
||||||
|
21
.github/workflows/publish.yaml
vendored
Normal file
21
.github/workflows/publish.yaml
vendored
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
name: Publish Docker image
|
||||||
|
on:
|
||||||
|
release:
|
||||||
|
types: [published]
|
||||||
|
jobs:
|
||||||
|
push_to_registries:
|
||||||
|
name: Publish assets to Release
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Get the version
|
||||||
|
id: vars
|
||||||
|
run: |
|
||||||
|
echo ::set-output name=sha::$(echo ${GITHUB_SHA:0:7})
|
||||||
|
echo ::set-output name=tag::$(echo ${GITHUB_REF#refs/tags/})
|
||||||
|
- name: Docker Login to Github Registry
|
||||||
|
run: echo ${{ secrets.GITHUB_TOKEN }} | docker login https://docker.pkg.github.com -u vulcanize --password-stdin
|
||||||
|
- name: Docker Pull
|
||||||
|
run: docker pull docker.pkg.github.com/vulcanize/go-ethereum/go-ethereum:${{steps.vars.outputs.sha}}
|
||||||
|
- name: Copy ethereum binary file
|
||||||
|
run: docker run --rm --entrypoint cat docker.pkg.github.com/vulcanize/go-ethereum/go-ethereum /usr/local/bin/geth > geth-linux-amd64
|
||||||
|
|
7
Dockerfile.amd64
Normal file
7
Dockerfile.amd64
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
# Build Geth in a stock Go builder container
|
||||||
|
FROM golang:1.13 as builder
|
||||||
|
|
||||||
|
#RUN apk add --no-cache make gcc musl-dev linux-headers git
|
||||||
|
|
||||||
|
ADD . /go-ethereum
|
||||||
|
RUN cd /go-ethereum && make geth
|
Loading…
Reference in New Issue
Block a user