Skip to content

Commit

Permalink
ci: fix the docker build
Browse files Browse the repository at this point in the history
Signed-off-by: Vincenzo Palazzo <vincenzopalazzodev@gmail.com>
  • Loading branch information
vincenzopalazzo committed Sep 15, 2024
1 parent d72a87b commit 4319714
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ jobs:
fail-fast: false
matrix:
include:
- { LN_IMPL: clightning }
- LN_IMPL: clightning
steps:
- uses: actions/checkout@v2
- name: Integration testing
run: |
docker build -f docker/Dockerfile.${{matrix.LN_IMPL}} -t lnprototest-${{matrix.LN_IMPL}} .
docker run lnprototest-${{matrix.LN_IMPL}}
docker build -f docker/Dockerfile.${{ matrix.LN_IMPL }} -t lnprototest-${{ matrix.LN_IMPL }} .
docker run lnprototest-${{ matrix.LN_IMPL }}
8 changes: 4 additions & 4 deletions docker/Dockerfile.clightning
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ RUN pip3 install -U pip && \
RUN git config --global user.name "John Doe" && \
git config --global user.email johndoe@example.com && \
git clone https://github.com/ElementsProject/lightning.git && \
cd lightning && \
pip3 install mako && \
./configure && \
make -j$(nproc)
cd lightning && \
pip3 install mako --break-system-packages && pip3 install grpcio-tools --break-system-packages && \
./configure && \
make -j$(nproc)

RUN mkdir lnprototest

Expand Down

0 comments on commit 4319714

Please sign in to comment.