Skip to content

Commit

Permalink
Update CI for Debian Bookworm
Browse files Browse the repository at this point in the history
  • Loading branch information
complexlogic committed Jan 26, 2024
1 parent ba0d2b3 commit dedcaaf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -159,8 +159,8 @@ jobs:
fail-fast: false
matrix:
config:
- name: Ubuntu
docker_image: ubuntu:23.10
- name: Debian
docker_image: debian:bookworm
package_type: DEB
package_ext: .deb

Expand All @@ -184,7 +184,7 @@ jobs:

- name: "Install dependencies"
run: |
if [[ "${{matrix.config.name}}" == "Ubuntu" ]]; then
if [[ "${{matrix.config.name}}" == "Debian" ]]; then
export DEBIAN_FRONTEND=noninteractive
apt update && apt install -y curl zip unzip tar build-essential git cmake pkg-config python3 nasm qtbase5-dev qttools5-dev
fi
Expand Down
2 changes: 1 addition & 1 deletion src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ if (UNIX)
set(CPACK_GENERATOR ${PACKAGE})
if (PACKAGE STREQUAL "DEB")
set(CPACK_DEBIAN_FILE_NAME "DEB-DEFAULT")
set(CPACK_DEBIAN_PACKAGE_DEPENDS "qtbase5, libc6 (>=2.38), libstdc++6 (>=13.2)")
set(CPACK_DEBIAN_PACKAGE_DEPENDS "qtbase5, libc6 (>=2.36), libstdc++6 (>=12.2)")
set(CPACK_DEBIAN_PACKAGE_MAINTAINER "complexlogic")
set(CPACK_DEBIAN_PACKAGE_SECTION "utils")
set(CPACK_DEBIAN_ARCHIVE_TYPE "gnutar")
Expand Down

0 comments on commit dedcaaf

Please sign in to comment.