mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-05-18 05:56:37 +00:00
.gitea: update release build actions (#31886)
Trying to make the docker build work.
This commit is contained in:
parent
94481d1351
commit
8f598e85ad
1 changed files with 10 additions and 4 deletions
|
|
@ -11,18 +11,24 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: docker/setup-qemu-action@v3
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
- name: Set up Go
|
- name: Set up Go
|
||||||
uses: actions/setup-go@v5
|
uses: actions/setup-go@v5
|
||||||
with:
|
with:
|
||||||
go-version: 1.23.0
|
go-version: 1.24
|
||||||
cache: false
|
cache: false
|
||||||
|
|
||||||
- name: Run docker build
|
- name: Run docker build
|
||||||
run: |
|
run: |
|
||||||
go run build/ci.go docker -platform linux/amd64,linux/arm64
|
go run build/ci.go dockerx -platform linux/amd64,linux/arm64,linux/riscv64
|
||||||
|
|
||||||
linux:
|
linux:
|
||||||
name: Docker Image
|
name: Linux Build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
|
@ -30,7 +36,7 @@ jobs:
|
||||||
- name: Set up Go
|
- name: Set up Go
|
||||||
uses: actions/setup-go@v5
|
uses: actions/setup-go@v5
|
||||||
with:
|
with:
|
||||||
go-version: 1.23.0
|
go-version: 1.24
|
||||||
cache: false
|
cache: false
|
||||||
|
|
||||||
- name: Run build
|
- name: Run build
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue