Remove dependency on QTextCodec for qt6 #150
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- master | |
- feature/* | |
pull_request: | |
name: CI | |
permissions: read-all | |
env: | |
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.) | |
# All aqt options: https://ddalcino.github.io/aqt-list-server/ | |
BUILD_TYPE: Release | |
jobs: | |
ubuntu: | |
if: true | |
runs-on: ubuntu-${{ matrix.ubuntu_version }} | |
name: Ubuntu-${{ matrix.ubuntu_version }}-Qt-${{ matrix.qt_version }}-shared-${{ matrix.shared }} | |
strategy: | |
fail-fast: false | |
matrix: | |
ubuntu_version: [20.04, 22.04] | |
qt_version: [5.12.12, 5.15.2, 6.6.2] | |
shared: [ON, OFF] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Qt6 | |
if: "startsWith(matrix.qt_version, '6.')" | |
uses: jurplel/install-qt-action@v3 | |
with: | |
version: ${{ matrix.qt_version }} | |
cache: 'true' | |
cache-key-prefix: ${{ runner.os }}-Qt-Cache-${{ matrix.qt_version }} | |
dir: ${{ github.workspace }}/Qt | |
modules: 'qt5compat' | |
- name: Install Qt5 | |
if: "startsWith(matrix.qt_version, '5.')" | |
uses: jurplel/install-qt-action@v3 | |
with: | |
version: ${{ matrix.qt_version }} | |
cache: 'true' | |
cache-key-prefix: ${{ runner.os }}-Qt-Cache-${{ matrix.qt_version }} | |
dir: ${{ github.workspace }}/Qt | |
- name: Install libraries | |
run: | | |
sudo apt-get update && | |
sudo apt-get install -y --no-install-recommends \ | |
zlib1g-dev libbz2-dev | |
- name: Configure CMake | |
run: cmake -DCMAKE_BUILD_TYPE="${{env.BUILD_TYPE}}" -DBUILD_SHARED_LIBS=${{ matrix.shared }} -DQUAZIP_ENABLE_TESTS=ON -B "${{github.workspace}}/build" | |
- name: Build | |
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} | |
- name: Run tests | |
working-directory: ${{github.workspace}}/build | |
run: "ctest --verbose" | |
ubuntu-zlibconst: | |
if: true | |
runs-on: ubuntu-${{ matrix.ubuntu_version }} | |
name: Ubuntu-${{ matrix.ubuntu_version }}-Qt-${{ matrix.qt_version }}-shared-zlibconst | |
strategy: | |
fail-fast: false | |
matrix: | |
ubuntu_version: [ 22.04 ] | |
qt_version: [ 6.4.0 ] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Qt6 | |
uses: jurplel/install-qt-action@v3 | |
with: | |
version: ${{ matrix.qt_version }} | |
cache: 'true' | |
cache-key-prefix: ${{ runner.os }}-Qt-Cache-${{ matrix.qt_version }} | |
dir: ${{ github.workspace }}/Qt | |
modules: 'qt5compat' | |
- name: Install libraries | |
run: | | |
sudo apt-get update && | |
sudo apt-get install -y --no-install-recommends \ | |
zlib1g-dev libbz2-dev | |
- name: Configure CMake | |
run: cmake -DCMAKE_BUILD_TYPE="${{env.BUILD_TYPE}}" -DBUILD_SHARED_LIBS=ON -DQUAZIP_ENABLE_TESTS=ON -DZLIB_CONST=ON -B "${{github.workspace}}/build" | |
- name: Build | |
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} | |
- name: Run tests | |
working-directory: ${{github.workspace}}/build | |
run: "ctest --verbose" | |
macos: | |
if: true | |
runs-on: macos-${{ matrix.macos_version }} | |
name: macos-${{ matrix.macos_version }}-Qt-${{ matrix.qt_version }}-shared-${{ matrix.shared }} | |
strategy: | |
fail-fast: false | |
matrix: | |
macos_version: [11, 12] | |
qt_version: [5.15.2, 6.6.2] | |
shared: [ON, OFF] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Install Qt6 | |
if: "startsWith(matrix.qt_version, '6.')" | |
uses: jurplel/install-qt-action@v3 | |
with: | |
version: ${{ matrix.qt_version }} | |
cache: 'true' | |
cache-key-prefix: ${{ runner.os }}-Qt-Cache-${{ matrix.qt_version }} | |
dir: ${{ github.workspace }}/Qt | |
modules: 'qt5compat' | |
- name: Install Qt5 | |
if: "startsWith(matrix.qt_version, '5.')" | |
uses: jurplel/install-qt-action@v3 | |
with: | |
version: ${{ matrix.qt_version }} | |
cache: 'true' | |
cache-key-prefix: ${{ runner.os }}-Qt-Cache-${{ matrix.qt_version }} | |
dir: ${{ github.workspace }}/Qt | |
- name: Configure CMake | |
run: cmake -DCMAKE_BUILD_TYPE="${{env.BUILD_TYPE}}" -DBUILD_SHARED_LIBS=${{ matrix.shared }} -DQUAZIP_ENABLE_TESTS=ON -B "${{github.workspace}}/build" | |
- name: Build | |
run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}} | |
- name: Run tests | |
working-directory: ${{github.workspace}}/build | |
run: "ctest --verbose" | |
alpine: | |
if: true | |
name: "cmake on ${{ matrix.runner }}" | |
runs-on: "ubuntu-20.04" | |
container: | |
image: "${{ matrix.runner }}" | |
strategy: | |
matrix: | |
runner: | |
- "alpine:3.11" # cmake 3.15, qt 5.12 | |
- "alpine:3.12" # cmake 3.17, qt 5.14 | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
steps: | |
- name: Show OS info | |
run: cat /etc/os-release | |
- uses: actions/checkout@v4 | |
- name: Install qt and build tools | |
run: apk add --update g++ make cmake qt5-qtbase-dev | |
- name: Show cmake version | |
run: cmake --version | |
- name: Run cmake | |
run: cmake -S . -B build -DQUAZIP_ENABLE_TESTS=ON | |
- name: Build quazip | |
run: cd build && VERBOSE=1 make -j8 | |
- name: Build tests | |
run: cd build/qztest && VERBOSE=1 make -j8 | |
- name: Run tests | |
run: build/qztest/qztest | |
windows-x64: | |
if: true | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
preset: [ conan, vcpkg ] | |
qt_version: [ 5.12.12, 6.6.2 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Qt6 | |
if: "startsWith(matrix.qt_version, '6.')" | |
uses: jurplel/install-qt-action@v3 | |
with: | |
version: ${{ matrix.qt_version }} | |
cache: 'true' | |
cache-key-prefix: ${{ runner.os }}-Qt-Cache-${{ matrix.qt_version }} | |
dir: ${{ github.workspace }}/Qt | |
modules: 'qt5compat' | |
- name: Install Qt5 | |
if: "startsWith(matrix.qt_version, '5.')" | |
uses: jurplel/install-qt-action@v3 | |
with: | |
version: ${{ matrix.qt_version }} | |
cache: 'true' | |
cache-key-prefix: ${{ runner.os }}-Qt-Cache-${{ matrix.qt_version }} | |
dir: ${{ github.workspace }}/Qt | |
- uses: TheMrMilchmann/setup-msvc-dev@v3 | |
with: | |
arch: x64 | |
- name: Install Conan | |
if: matrix.preset == 'conan' | |
uses: turtlebrowser/get-conan@main | |
- name: Init conan | |
if: matrix.preset == 'conan' | |
run: conan profile detect | |
- name: Install dependencies with conan | |
if: matrix.preset == 'conan' | |
shell: cmd | |
run: conan install . -of build -s build_type=Release -o *:shared=False --build=missing | |
- name: Configure | |
shell: cmd | |
run: cmake --preset ${{ matrix.preset }} -DQUAZIP_ENABLE_TESTS=ON | |
- name: Build | |
shell: cmd | |
working-directory: ./build | |
run: cmake --build . --config Release | |
- name: Check PE x64 | |
if: "startsWith(matrix.qt_version, '6.')" | |
shell: bash | |
working-directory: ./build/quazip/Release | |
run: file quazip1-qt6.dll |grep "x86-64" | |
- name: Check PE x64 | |
if: "startsWith(matrix.qt_version, '5.')" | |
shell: bash | |
working-directory: ./build/quazip/Release | |
run: file quazip1-qt5.dll |grep "x86-64" | |
- name: Debug | |
shell: cmd | |
run: dir build\qztest\Release | |
# TODO: We need to solve copying dlls to qztest.exe dir | |
- name: Test | |
if: false | |
shell: cmd | |
working-directory: ./build | |
run: ctest --verbose -C Release | |
windows-x86: | |
if: true | |
runs-on: windows-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
preset: [ conan_x86, vcpkg_x86 ] | |
qt_version: [ 5.12.12 ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install Qt | |
uses: jurplel/install-qt-action@v3 | |
with: | |
version: ${{ matrix.qt_version }} | |
cache: 'true' | |
cache-key-prefix: ${{ runner.os }}-Qt-Cache-${{ matrix.qt_version }} | |
dir: ${{ github.workspace }}/Qt | |
arch: 'win32_msvc2017' | |
- uses: TheMrMilchmann/setup-msvc-dev@v3 | |
with: | |
arch: x86 | |
- name: Install Conan | |
if: matrix.preset == 'conan_x86' | |
uses: turtlebrowser/get-conan@main | |
- name: Init conan | |
if: matrix.preset == 'conan_x86' | |
run: conan profile detect | |
- name: Install dependencies with conan | |
if: matrix.preset == 'conan_x86' | |
shell: cmd | |
run: conan install . -of build -s build_type=Release -s:h arch=x86 -o *:shared=False --build=missing | |
- name: Configure | |
shell: cmd | |
run: cmake --preset ${{ matrix.preset }} | |
- name: Build | |
shell: cmd | |
working-directory: ./build | |
run: cmake --build . --config Release | |
- name: Check PE x86 | |
shell: bash | |
working-directory: ./build/quazip/Release | |
run: file quazip1-qt5.dll |grep 80386 |