Skip to content

Commit

Permalink
gha/appimage-build: Test Qt6 AppImage on ubuntu 24.04
Browse files Browse the repository at this point in the history
  • Loading branch information
anlambert committed Oct 17, 2024
1 parent c18e840 commit aec9c7d
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/appimage-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,17 @@ on: [push, pull_request]
jobs:
appimage:
name: ${{ matrix.config.name }}
runs-on: ubuntu-22.04
runs-on: ${{ matrix.config.os }}
strategy:
fail-fast: false
matrix:
config:
- name: Talipot AppImage build on CentOS 8 Stream
os: ubuntu-22.04
docker-image: tgagor/centos-stream:8
centos-version: centos8
- name: Talipot AppImage build on CentOS 9 Stream
os: ubuntu-24.04
docker-image: dokken/centos-stream-9
centos-version: centos9
steps:
Expand Down Expand Up @@ -50,11 +52,18 @@ jobs:
-v `pwd`:/talipot:rw
${{ matrix.config.docker-image }}
/bin/bash -c "bash -xe /talipot/bundlers/linux/talipot_appimage_centos_build.sh"
- name: Install required dependencies to run AppImage
- if: matrix.config.os == 'ubuntu-22.04'
name: Install required dependencies to run AppImage
run: |
sudo apt update
sudo apt install qtbase5-dev xvfb libfuse2
shell: bash
- if: matrix.config.os == 'ubuntu-24.04'
name: Install required dependencies to run AppImage
run: |
sudo apt update
sudo apt install qt6-base-dev xvfb libfuse2
shell: bash
- name: Check Talipot AppImage can be executed on Ubuntu
working-directory: ./build
run: xvfb-run bash -c "./$(ls Talipot*.AppImage) --check-application-starts --debug-plugins-load"
Expand Down

0 comments on commit aec9c7d

Please sign in to comment.