Skip to content

Commit

Permalink
Remove unnecessary autoconf-archive install from workflow and Dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
Talinx committed Sep 8, 2024
1 parent f8dbd92 commit e8a04a3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/full-check.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Version 20240904, by Eriberto Mota, modified by Christoph Raitzig
# Version 20240908, by Eriberto Mota, modified by Christoph Raitzig

name: full-check

Expand All @@ -12,7 +12,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: install_dependencies
run: sudo apt install libjpeg-dev libpng-dev libwebp-dev libcurl4-gnutls-dev libncurses5-dev libexif-dev autoconf-archive pkg-config
run: sudo apt install libjpeg-dev libpng-dev libwebp-dev libcurl4-gnutls-dev libncurses5-dev libexif-dev pkg-config
- name: first_build
run: |
./autogen.sh
Expand Down Expand Up @@ -40,7 +40,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- name: install_dependencies
run: sudo apt install libjpeg-dev libpng-dev libwebp-dev libcurl4-gnutls-dev libncurses5-dev libexif-dev autoconf-archive pkg-config
run: sudo apt install libjpeg-dev libpng-dev libwebp-dev libcurl4-gnutls-dev libncurses5-dev libexif-dev pkg-config
- uses: goto-bus-stop/setup-zig@v2
- name: build with zig
run: |
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM ubuntu as builder
WORKDIR /app
COPY . .
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update && apt-get install -y gcc make libjpeg-dev libpng-dev libwebp-dev libcurl4-gnutls-dev libncurses5-dev libexif-dev autoconf-archive pkg-config
RUN apt-get update && apt-get install -y gcc make libjpeg-dev libpng-dev libwebp-dev libcurl4-gnutls-dev libncurses5-dev libexif-dev pkg-config
RUN ./autogen.sh && ./configure && make

FROM ubuntu
Expand Down

0 comments on commit e8a04a3

Please sign in to comment.