Compare commits

...

1 Commits

Author SHA1 Message Date
nicolas.dorier
ddafd764c6
Fix dockerfile for arm32/64
Some checks failed
FreeBSD Test / Build and test on FreeBSD (push) Has been cancelled
Continuous Integration / Smoke Test ${{ matrix.cfg }} (32, make-32-bit-nodev-check, 0, make check-source check-units installcheck) (push) Has been cancelled
Continuous Integration / Smoke Test ${{ matrix.cfg }} (make, make) (push) Has been cancelled
Continuous Integration / Smoke Test ${{ matrix.cfg }} (make-EXPERIMENTAL-check, 1, make check-source check-units installcheck check-gen-updated) (push) Has been cancelled
Continuous Integration / Smoke Test ${{ matrix.cfg }} (make-O3-check, -O3, make check-source check-units installcheck check-gen-updated) (push) Has been cancelled
Continuous Integration / Check c-lightning doc (push) Has been cancelled
Continuous Integration / Protocol Test Config (clang, sqlite3) (push) Has been cancelled
Continuous Integration / Protocol Test Config (gcc, postgres) (push) Has been cancelled
Continuous Integration / Normal Test Config ${{ matrix.cfg }} (DUAL_FUND, 0, 1, 1) (push) Has been cancelled
Continuous Integration / Normal Test Config ${{ matrix.cfg }} (EXPERIMENTAL, 1) (push) Has been cancelled
Continuous Integration / Normal Test Config ${{ matrix.cfg }} (Elements, liquid-regtest) (push) Has been cancelled
Continuous Integration / Normal Test Config ${{ matrix.cfg }} (PostgreSQL, postgres, 2) (push) Has been cancelled
Continuous Integration / Normal Test Config ${{ matrix.cfg }} (arm32v7, cross-arm32, arm-linux-gnueabihf) (push) Has been cancelled
Continuous Integration / Normal Test Config ${{ matrix.cfg }} (arm64v8, cross-arm64, aarch64-linux-gnu) (push) Has been cancelled
Continuous Integration / Normal Test Config ${{ matrix.cfg }} (check-dbstmts, gcc, 1) (push) Has been cancelled
Continuous Integration / Normal Test Config ${{ matrix.cfg }} (clang-fuzzing, clang, 1) (push) Has been cancelled
Continuous Integration / Normal Test Config ${{ matrix.cfg }} (non-DEVELOPER-non-COMPAT-1, 0, 0, 1, 2) (push) Has been cancelled
Continuous Integration / Normal Test Config ${{ matrix.cfg }} (non-DEVELOPER-non-COMPAT-2, 0, 0, 2, 2) (push) Has been cancelled
Continuous Integration / Valgrind Test Config ${{ matrix.cfg }} (valgrind-1, 3, 1, 10, 1) (push) Has been cancelled
Continuous Integration / Valgrind Test Config ${{ matrix.cfg }} (valgrind-10, 3, 10, 10, 1) (push) Has been cancelled
Continuous Integration / Valgrind Test Config ${{ matrix.cfg }} (valgrind-2, 3, 2, 10, 1) (push) Has been cancelled
Continuous Integration / Valgrind Test Config ${{ matrix.cfg }} (valgrind-3, 3, 3, 10, 1) (push) Has been cancelled
Continuous Integration / Valgrind Test Config ${{ matrix.cfg }} (valgrind-4, 3, 4, 10, 1) (push) Has been cancelled
Continuous Integration / Valgrind Test Config ${{ matrix.cfg }} (valgrind-5, 3, 5, 10, 1) (push) Has been cancelled
Continuous Integration / Valgrind Test Config ${{ matrix.cfg }} (valgrind-6, 3, 6, 10, 1) (push) Has been cancelled
Continuous Integration / Valgrind Test Config ${{ matrix.cfg }} (valgrind-7, 3, 7, 10, 1) (push) Has been cancelled
Continuous Integration / Valgrind Test Config ${{ matrix.cfg }} (valgrind-8, 3, 8, 10, 1) (push) Has been cancelled
Continuous Integration / Valgrind Test Config ${{ matrix.cfg }} (valgrind-9, 3, 9, 10, 1) (push) Has been cancelled
2021-12-08 12:18:53 +09:00
2 changed files with 4 additions and 2 deletions

View File

@ -48,7 +48,7 @@ RUN mkdir /opt/litecoin && cd /opt/litecoin \
FROM debian:buster-slim as builder
ENV LIGHTNINGD_VERSION=master
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates autoconf automake build-essential gettext git libtool python3 python3-mako wget gnupg dirmngr git \
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates autoconf automake build-essential gettext git libtool python3 python3-pip python3-setuptools python3-mako wget gnupg dirmngr git \
libc6-armhf-cross gcc-arm-linux-gnueabihf g++-arm-linux-gnueabihf
ENV target_host=arm-linux-gnueabihf
@ -92,6 +92,7 @@ RUN git clone --recursive /tmp/lightning . && \
ARG DEVELOPER=0
ENV PYTHON_VERSION=3
RUN pip3 install mrkd
RUN ./configure --prefix=/tmp/lightning_install --enable-static && make -j3 DEVELOPER=${DEVELOPER} && make install
FROM arm32v7/debian:buster-slim as final

View File

@ -48,7 +48,7 @@ RUN mkdir /opt/litecoin && cd /opt/litecoin \
FROM debian:buster-slim as builder
ENV LIGHTNINGD_VERSION=master
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates autoconf automake build-essential gettext git libtool python3 python3-mako wget gnupg dirmngr git \
RUN apt-get update && apt-get install -y --no-install-recommends ca-certificates autoconf automake build-essential gettext git libtool python3 python3-pip python3-setuptools python3-mako wget gnupg dirmngr git \
libc6-arm64-cross gcc-aarch64-linux-gnu g++-aarch64-linux-gnu
ENV target_host=aarch64-linux-gnu
@ -91,6 +91,7 @@ RUN git clone --recursive /tmp/lightning . && \
ARG DEVELOPER=0
ENV PYTHON_VERSION=3
RUN pip3 install mrkd
RUN ./configure --prefix=/tmp/lightning_install --enable-static && make -j3 DEVELOPER=${DEVELOPER} && make install
FROM arm64v8/debian:buster-slim as final