Skip to content

Commit e5c1587

Browse files
authored
Merge pull request Blockstream#108 from mempool/knorrium/arm64
Update cargo setup method and enable arm64 builds again
2 parents cb79811 + 9ba4dd5 commit e5c1587

File tree

2 files changed

+15
-7
lines changed

2 files changed

+15
-7
lines changed

.github/workflows/on-tag.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -65,9 +65,9 @@ jobs:
6565
- name: Checkout project
6666
uses: actions/checkout@v3
6767

68-
# - name: Set up QEMU
69-
# uses: docker/setup-qemu-action@v3
70-
# id: qemu
68+
- name: Set up QEMU
69+
uses: docker/setup-qemu-action@v3
70+
id: qemu
7171

7272
- name: Setup Docker buildx action
7373
uses: docker/setup-buildx-action@v3
@@ -90,7 +90,7 @@ jobs:
9090
docker buildx build \
9191
--cache-from "type=local,src=/tmp/.buildx-cache" \
9292
--cache-to "type=local,dest=/tmp/.buildx-cache" \
93-
--platform linux/amd64 \
93+
--platform linux/amd64,linux/arm64 \
9494
--tag ${{ secrets.DOCKER_HUB_USER }}/electrs:$TAG \
9595
--tag ${{ secrets.DOCKER_HUB_USER }}/electrs:latest \
9696
--output "type=registry" . \

Dockerfile

+11-3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
11
FROM debian:bookworm-slim AS base
22

3-
RUN apt update -qy
4-
RUN apt install -qy librocksdb-dev
3+
ENV CARGO_NET_GIT_FETCH_WITH_CLI=true
4+
5+
RUN apt update -qy && \
6+
apt install -qy librocksdb-dev curl
57

68
FROM base as build
79

8-
RUN apt install -qy git cargo clang cmake
10+
RUN apt install -qy git clang cmake
11+
12+
ENV RUSTUP_HOME=/rust
13+
ENV CARGO_HOME=/cargo
14+
ENV PATH=/cargo/bin:/rust/bin:$PATH
15+
16+
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y
917

1018
WORKDIR /build
1119
COPY . .

0 commit comments

Comments
 (0)