Skip to content

Commit

Permalink
ci: add missing pkg-config
Browse files Browse the repository at this point in the history
  • Loading branch information
variar committed Nov 24, 2024
1 parent 5c77b45 commit 025cbc1
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,11 @@ jobs:
with:
arch: ${{ matrix.config.arch }}

- name: Add pkg-config
shell: sh
run: |
choco install pkgconfiglite
- uses: ./.github/actions/agent-build
- uses: ./.github/actions/agent-run-tests
- uses: ./.github/actions/agent-package-win
Expand Down
2 changes: 1 addition & 1 deletion docker/ubuntu20.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN apt-get update -y && \
apt-get install --no-install-recommends build-essential \
qtbase5-dev qt5-qmake qtbase5-dev-tools qttools5-dev qttranslations5-l10n\
libboost-dev libssl-dev libicu-dev libcurl4-openssl-dev \
ragel ninja-build zlib1g-dev git \
ragel ninja-build zlib1g-dev git pkg-config \
wget ca-certificates fuse file -y && \
apt-get clean && rm -rf /var/lib/apt/lists/*

Expand Down
2 changes: 1 addition & 1 deletion docker/ubuntu20.04_qt5.15/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN apt-get update -y && \
qt515base qt515svg qt515tools qt515imageformats qt515translations \
mesa-common-dev libglu1-mesa-dev \
libboost-dev libicu-dev libssl-dev libcurl4-openssl-dev \
ragel ninja-build zlib1g-dev git \
ragel ninja-build zlib1g-dev git pkg-config \
wget ca-certificates fuse file -y && \
apt-get clean && rm -rf /var/lib/apt/lists/*

Expand Down
2 changes: 1 addition & 1 deletion docker/ubuntu22.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RUN apt update -y && \
apt install --no-install-recommends build-essential \
qtbase5-dev qt5-qmake qtbase5-dev-tools qttools5-dev qttranslations5-l10n \
libboost-dev libssl-dev libcurl4-openssl-dev \
ragel ninja-build zlib1g-dev git \
ragel ninja-build zlib1g-dev git pkg-config \
wget ca-certificates fuse file -y && \
apt clean && rm -rf /var/lib/apt/lists/*

Expand Down
2 changes: 1 addition & 1 deletion docker/ubuntu24.04/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ RUN apt-get update -y && \
qt6-base-dev qt6-5compat-dev qt6-translations-l10n \
qt6-tools-dev-tools qt6-base-dev-tools qt6-tools-dev \
libboost-dev libicu-dev libssl-dev libcurl4-openssl-dev \
ragel ninja-build zlib1g-dev git \
ragel ninja-build zlib1g-dev git pkg-config \
wget ca-certificates fuse file -y && \
apt-get clean && rm -rf /var/lib/apt/lists/*

Expand Down

0 comments on commit 025cbc1

Please sign in to comment.