test #531
This file contains hidden or 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
name: Linux build | |
on: | |
push: | |
branches: '*' | |
tags: '*' | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
include: | |
- qt-version: '6.8' | |
qt-target: 'desktop' | |
qt-modules: '' | |
arch: 'amd64' | |
- qt-version: '6.8.1' | |
qt-target: 'desktop' | |
qt-modules: 'qtshadertools' | |
arch: 'aarch64' | |
steps: | |
- name: Maximize build space | |
uses: easimon/maximize-build-space@master | |
with: | |
root-reserve-mb: 512 | |
swap-size-mb: 1024 | |
remove-dotnet: true | |
remove-android: true | |
remove-haskell: true | |
remove-codeql: true | |
remove-docker-images: true | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
submodules: 'recursive' | |
- name: Setup environment | |
run: | | |
sed -i -e '/^#/d' .github/config.env | |
sed -i -e '/^$/d' .github/config.env | |
cat .github/config.env >> "${GITHUB_ENV}" | |
shell: bash | |
- if: contains(matrix.arch, 'amd64') | |
name: Install dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y libxkbcommon-x11-0 | |
shell: bash | |
- name: Install GCC11 | |
shell: bash | |
run: | | |
sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test | |
sudo apt update | |
sudo apt install gcc-11 g++-11 | |
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-11 110 --slave /usr/bin/g++ g++ /usr/bin/g++-11 --slave /usr/bin/gcov gcov /usr/bin/gcov-11 | |
## Install Qt | |
- name: Install Qt | |
uses: jurplel/install-qt-action@v4 | |
with: | |
version: ${{ matrix.qt-version }} | |
arch: linux_gcc_64 | |
target: ${{ matrix.qt-target }} | |
modules: ${{ matrix.qt-modules }} | |
dir: ${{ github.workspace }}/Qt_host | |
- name: Set host Qt path | |
run: echo "QT_HOST_PATH=${QT_ROOT_DIR}" >> "${GITHUB_ENV}" | |
shell: bash | |
- if: "!contains(matrix.arch, 'amd64')" | |
name: Restore cross-compiled Qt from cache | |
id: restore-qt-cross | |
uses: jlanga/cache/restore@remove-files | |
with: | |
path: ./qt-cross/ | |
key: qt-cross-${{ runner.os }}-${{ matrix.qt-version }}-${{ matrix.qt-target }}-${{ matrix.qt-modules }}-${{ matrix.arch }} | |
- if: "!contains(matrix.arch, 'amd64')" | |
name: Set cross Qt path | |
run: echo "QT_CROSS_PATH=$(pwd)/qt-cross" >> "$GITHUB_ENV" | |
shell: bash | |
- if: "!contains(matrix.arch, 'amd64')" | |
name: Prepare cross-compilation environment | |
run: .ci/prepare_cross_build.sh "${{ matrix.arch }}" | |
shell: bash | |
- if: "!contains(matrix.arch, 'amd64') && steps.restore-qt-cross.outputs.cache-hit != 'true'" | |
name: Cross-compile Qt | |
shell: bash | |
run: .ci/build_qt6.sh "${{ matrix.qt-version }}" "${{ matrix.qt-modules }}" "${{ matrix.arch }}" | |
- if: "!contains(matrix.arch, 'amd64') && steps.restore-qt-cross.outputs.cache-hit != 'true'" | |
name: Cache and remove cross-compiled Qt | |
id: cache-qt-cross | |
uses: jlanga/cache/save@remove-files | |
with: | |
path: ./qt-cross/ | |
key: qt-cross-${{ runner.os }}-${{ matrix.qt-version }}-${{ matrix.qt-target }}-${{ matrix.qt-modules }}-${{ matrix.arch }} | |
- if: "!contains(matrix.arch, 'amd64') && steps.restore-qt-cross.outputs.cache-hit != 'true'" | |
name: Restore cross-compiled Qt from cache | |
uses: jlanga/cache/restore@remove-files | |
with: | |
path: ./qt-cross/ | |
key: qt-cross-${{ runner.os }}-${{ matrix.qt-version }}-${{ matrix.qt-target }}-${{ matrix.qt-modules }}-${{ matrix.arch }} | |
## Build | |
- name: Build AppImage | |
run: .ci/build_appimage.sh ${{ matrix.arch }} | |
shell: 'script -q -e -c "bash {0}"' | |
## Upload | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: build-Qt-${{ matrix.qt-version }}-${{ matrix.arch }} | |
path: | | |
*.AppImage | |
*.zsync |