Skip to content

Update Safari extension in src/mac/js to version 2.4.1 #2142

Update Safari extension in src/mac/js to version 2.4.1

Update Safari extension in src/mac/js to version 2.4.1 #2142

Workflow file for this run

name: CMake (Windows)
on: [push, pull_request]
env:
BUILD_TYPE: RelWithDebInfo
BUILD_NUMBER: ${{github.run_number}}
CMAKE_BUILD_PARALLEL_LEVEL: 4
jobs:
build:
runs-on: windows-2022
strategy:
matrix:
arch: [x64, arm64]
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
- name: Prepare vcpkg and libraries
uses: lukka/run-vcpkg@v7
with:
vcpkgArguments: gtest openssl
vcpkgTriplet: ${{matrix.arch}}-windows
vcpkgGitCommitId: 031ad89ce6c575df35a8e58707ad2c898446c63e
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: 6.9.1
arch: ${{ matrix.arch == 'arm64' && 'win64_msvc2022_arm64_cross_compiled' || 'win64_msvc2022_64' }}
- name: Setup MS Visual C++ dev env
uses: ilammy/msvc-dev-cmd@v1
with:
arch: ${{ matrix.arch == 'arm64' && 'amd64_arm64' || 'amd64' }}
- name: Install WiX
run: |
dotnet tool install --global wix --version 6.0.1
wix extension -g add WixToolset.UI.wixext/6.0.1
wix extension -g add WixToolset.Util.wixext/6.0.1
wix extension -g add WixToolset.BootstrapperApplications.wixext/6.0.1
- name: Configure
run: |
cmake "-GNinja" -S . -B build `
"-DCMAKE_TOOLCHAIN_FILE=${env:RUNVCPKG_VCPKG_ROOT}/scripts/buildsystems/vcpkg.cmake" `
"-DCMAKE_BUILD_TYPE=${env:BUILD_TYPE}"
- name: Build
run: |
cmake --build build --config ${env:BUILD_TYPE}
cmake --build build --config ${env:BUILD_TYPE} --target installer
cmake --build build --config ${env:BUILD_TYPE} --target bundle
- name: Test
if: ${{ matrix.arch == 'x64' }}
run: ctest -V -C ${env:BUILD_TYPE} --test-dir build
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: web-eid-app-windows-build-${{matrix.arch}}-${{github.run_number}}
path: |
build/src/app/*.msi
build/src/app/*.exe
build/**/*.pdb