Skip to content

Commit

Permalink
Fix: CI. Update zlib version to 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jjnicola committed Jan 24, 2024
1 parent b9b0c7b commit 4614a5c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions rust/cross.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ RUN ./configure --host=x86_64-unknown-linux-gnu --with-pcap=linux
RUN cat config.log
RUN make install

RUN curl --output /tmp/zlib.tar.gz https://www.zlib.net/zlib-1.3.tar.gz
RUN curl --output /tmp/zlib.tar.gz https://www.zlib.net/zlib-1.3.1.tar.gz
WORKDIR /tmp
RUN tar xvf zlib.tar.gz
WORKDIR /tmp/zlib-1.3
WORKDIR /tmp/zlib-1.3.1
RUN ./configure
RUN make install
RUN ldconfig
Expand Down
4 changes: 2 additions & 2 deletions rust/cross_aarch64.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ RUN ./configure --host=aarch64-unknown-linux-gnu --with-pcap=linux
RUN cat config.log
RUN make install

RUN curl --output /tmp/zlib.tar.gz https://www.zlib.net/zlib-1.3.tar.gz
RUN curl --output /tmp/zlib.tar.gz https://www.zlib.net/zlib-1.3.1.tar.gz
WORKDIR /tmp
RUN tar xvzf zlib.tar.gz
WORKDIR /tmp/zlib-1.3
WORKDIR /tmp/zlib-1.3.1
RUN ./configure
RUN make install
RUN ldconfig
Expand Down

0 comments on commit 4614a5c

Please sign in to comment.