mirror of
https://github.com/paradigmxyz/reth.git
synced 2026-01-30 01:28:21 -05:00
ref: https://github.com/paradigmxyz/reth/actions/runs/5486255403/jobs/9996118421 ref: https://github.com/foundry-rs/foundry/issues/3827 Compiling serde v1.0.164 error: /lib/x86_64-linux-gnu/libc.so.6: version `GLIBC_2.25' not found (required by /target/maxperf/deps/libserde_derive-6e9709c79bb5c7fa.so) --> /cargo/registry/src/index.crates.io-6f17d22bba15001f/serde-1.0.164/src/lib.rs:340:1 | 340 | extern crate serde_derive; | ^^^^^^^^^^^^^^^^^^^^^^^^^^
45 lines
1.1 KiB
YAML
45 lines
1.1 KiB
YAML
name: docker
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- v*
|
|
|
|
env:
|
|
REPO_NAME: ${{ github.repository_owner }}/reth
|
|
IMAGE_NAME: ${{ github.repository_owner }}/reth
|
|
RUSTFLAGS: -D warnings
|
|
CARGO_TERM_COLOR: always
|
|
DOCKER_IMAGE_NAME: ghcr.io/${{ github.repository_owner }}/reth
|
|
DOCKER_USERNAME: ${{ github.actor }}
|
|
|
|
jobs:
|
|
build:
|
|
name: build and push
|
|
runs-on: ubuntu-20.04
|
|
permissions:
|
|
packages: write
|
|
contents: read
|
|
steps:
|
|
- name: Checkout sources
|
|
uses: actions/checkout@v3
|
|
- name: Get latest version of stable Rust
|
|
run: rustup update stable
|
|
- uses: Swatinem/rust-cache@v2
|
|
with:
|
|
cache-on-failure: true
|
|
|
|
- name: Log in to Docker
|
|
run: |
|
|
echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io --username ${DOCKER_USERNAME} --password-stdin
|
|
|
|
- name: Set up Docker builder
|
|
run: |
|
|
docker run --privileged --rm tonistiigi/binfmt --install arm64,amd64
|
|
docker buildx create --use --name cross-builder
|
|
|
|
- name: Build and push image
|
|
run: |
|
|
cargo install cross
|
|
env PROFILE=maxperf make docker-build-latest
|