armv6 -> armv7

This commit is contained in:
Damian Mee 2019-08-15 06:39:11 +07:00
parent 4d0bbfe125
commit 12ded02728
No known key found for this signature in database
GPG Key ID: 2F961EAB8789725D
2 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ jobs:
- uses: actions/checkout@master - uses: actions/checkout@master
- name: prepare stuff - name: prepare stuff
run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes run: docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
- name: test stuff - name: test stuff
run: docker run --rm -t arm32v6/alpine uname -m run: docker run --rm -t arm32v6/alpine uname -m

View File

@ -1,5 +1,5 @@
# Build stage for Bitcoin Core # Build stage for Bitcoin Core
FROM arm32v7/alpine:3.10 AS bitcoin-core FROM arm32v6/alpine:3.10 AS bitcoin-core
# fetch already built berkeleydb # fetch already built berkeleydb
COPY --from=lncm/berkeleydb:db-4.8.30.NC-linux-arm /opt /opt COPY --from=lncm/berkeleydb:db-4.8.30.NC-linux-arm /opt /opt
@ -84,7 +84,7 @@ RUN strip ${BITCOIN_PREFIX}/lib/libbitcoinconsensus.so.0.0.0
# Build stage for compiled artifacts # Build stage for compiled artifacts
FROM arm32v7/alpine:3.10 AS final FROM arm32v6/alpine:3.10 AS final
LABEL maintainer.0="nolim1t (@nolim1t)" \ LABEL maintainer.0="nolim1t (@nolim1t)" \
maintainer.1="Damian Mee (@meeDamian)" maintainer.1="Damian Mee (@meeDamian)"