Skip to content

Commit

Permalink
Update Qt 6.7.2 and OpenSSL 3.0.14 (open-eid#1273)
Browse files Browse the repository at this point in the history
IB-8126

Signed-off-by: Raul Metsma <[email protected]>
  • Loading branch information
metsma authored Jul 8, 2024
1 parent 5da03fa commit 0fe8843
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 17 deletions.
26 changes: 11 additions & 15 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
submodules: recursive
- name: Download artifact
uses: dawidd6/action-download-artifact@v3
uses: dawidd6/action-download-artifact@v6
with:
workflow: build.yml
branch: master
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
with:
submodules: recursive
- name: Download artifact
uses: dawidd6/action-download-artifact@v3
uses: dawidd6/action-download-artifact@v6
with:
workflow: build.yml
branch: master
Expand All @@ -81,7 +81,7 @@ jobs:
repo: open-eid/libdigidocpp
- name: Install artifact
run: |
apt install --no-install-recommends -y ./libdigidocpp-pkg/*$(lsb_release -rs)*.deb
apt install --no-install-recommends -y ./libdigidocpp-pkg/*.deb
rm -rf libdigidocpp-pkg
- name: Setup changelog
run: |
Expand Down Expand Up @@ -122,17 +122,15 @@ jobs:
with:
submodules: recursive
- name: Download artifact
uses: dawidd6/action-download-artifact@v3
uses: dawidd6/action-download-artifact@v6
with:
workflow: build.yml
branch: master
name: fedora_${{ matrix.container }}
path: libdigidocpp-pkg
repo: open-eid/libdigidocpp
- name: Install artifact
run: |
. /etc/os-release
dnf install -y ./libdigidocpp-pkg/*.rpm
run: dnf install -y ./libdigidocpp-pkg/*.rpm
- name: Build
run: |
cmake -DCMAKE_INSTALL_PREFIX=/usr -B build -S .
Expand Down Expand Up @@ -161,7 +159,7 @@ jobs:
with:
submodules: recursive
- name: Download artifact
uses: dawidd6/action-download-artifact@v3
uses: dawidd6/action-download-artifact@v6
with:
workflow: build.yml
branch: master
Expand All @@ -179,9 +177,9 @@ jobs:
vcpkgGitCommitId: 18b028fe785e707265fa0e35590b7537ae1d12ea
vcpkgTriplet: x64-windows
- name: Install Qt
uses: jurplel/install-qt-action@v3
uses: jurplel/install-qt-action@v4
with:
version: 6.7.1
version: 6.7.2
arch: win64_msvc2019_64
- name: Setup dev env
uses: ilammy/msvc-dev-cmd@v1
Expand All @@ -193,8 +191,6 @@ jobs:
wix extension -g add WixToolset.UI.wixext/5.0.0
- name: Build
run: |
md build/client
copy ${{ env.RUNVCPKG_VCPKG_ROOT }}\installed\x64-windows\bin\*.dll build\client\
cmake "-GNinja" -B build -S . -DCMAKE_BUILD_TYPE=RelWithDebInfo `
-DCMAKE_TOOLCHAIN_FILE=${{ env.RUNVCPKG_VCPKG_ROOT }}/scripts/buildsystems/vcpkg.cmake `
"-DLibDigiDocpp_ROOT=libs/PFiles64/libdigidocpp"
Expand Down Expand Up @@ -223,15 +219,15 @@ jobs:
- name: Install dependencies
run: sudo apt update -qq && sudo apt install --no-install-recommends -y cmake libldap2-dev gettext libpcsclite-dev libminizip-dev libxml-security-c-dev libgl-dev libqt6svg6-dev qt6-tools-dev qt6-tools-dev-tools qt6-l10n-tools libflatbuffers-dev zlib1g-dev
- name: Download artifact
uses: dawidd6/action-download-artifact@v3
uses: dawidd6/action-download-artifact@v6
with:
workflow: build.yml
branch: master
name: ubuntu_22.04
path: libdigidocpp-pkg
repo: open-eid/libdigidocpp
- name: Install artifact
run: sudo dpkg -i libdigidocpp-pkg/*$(lsb_release -rs)*.deb
run: sudo dpkg -i libdigidocpp-pkg/*.deb
- name: Download Coverity Build Tool
run: |
curl -s -d "token=$TOKEN&project=$PROJECTNAME" -o cov-analysis-linux64.tar.gz https://scan.coverity.com/download/cxx/linux64
Expand Down Expand Up @@ -267,7 +263,7 @@ jobs:
- name: Install dependencies
run: sudo apt update -qq && sudo apt install --no-install-recommends -y cmake libldap2-dev gettext libpcsclite-dev libminizip-dev libxml-security-c-dev libgl-dev libqt6svg6-dev qt6-tools-dev qt6-tools-dev-tools qt6-l10n-tools libflatbuffers-dev zlib1g-dev
- name: Download artifact
uses: dawidd6/action-download-artifact@v3
uses: dawidd6/action-download-artifact@v6
with:
workflow: build.yml
branch: master
Expand Down
4 changes: 2 additions & 2 deletions prepare_osx_build_environment.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
set -e

######### Versions of libraries/frameworks to be compiled
QT_VER="6.7.1"
OPENSSL_VER="3.0.13"
QT_VER="6.7.2"
OPENSSL_VER="3.0.14"
OPENLDAP_VER="2.6.8"
REBUILD=false
BUILD_PATH=~/cmake_builds
Expand Down

0 comments on commit 0fe8843

Please sign in to comment.