Skip to content

Commit

Permalink
Add Linux CI
Browse files Browse the repository at this point in the history
  • Loading branch information
vicr123 committed Nov 17, 2024
1 parent c9804d9 commit f43bbae
Showing 1 changed file with 47 additions and 0 deletions.
47 changes: 47 additions & 0 deletions .github/workflows/linux-appimage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
name: "Linux (AppImage) CI"
on:
push:
branches:
- '**'
release:
types: [published]
pull_request:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-24.04
steps:
- name: Install Ninja
uses: seanmiddleditch/gha-setup-ninja@master
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
aqtversion: '==3.1.*'
version: '6.6.3'
target: 'desktop'
arch: 'gcc_64'
cache: true
modules: 'qt3d qtcharts qtconnectivity qtdatavis3d qtgraphs qtgrpc qthttpserver qtimageformats qtlanguageserver qtlocation qtlottie qtmultimedia qtnetworkauth qtpdf qtpositioning qtquick3dphysics qtquickeffectmaker qtremoteobjects qtscxml qtsensors qtserialbus qtserialport qtspeech qtvirtualkeyboard qtwebchannel qtwebengine qtwebsockets qtwebview qt5compat qtquick3d qtquicktimeline qtshadertools'
- name: Install QCoro
uses: theCheeseboard/actions/build-cmake-project@actions
with:
project: danvratil/qcoro
commitish: v0.10.0
- name: Install libcontemporary
uses: theCheeseboard/actions/build-cmake-project@actions
with:
project: theCheeseboard/libcontemporary
commitish: features/qml
- name: Install Contemporary Playground
id: playground
uses: theCheeseboard/actions/build-cmake-project@actions
with:
project: .
commitish: .
extra-cmake-args: -DCNTP_BUNDLE_ICONS=ON
- name: Deploy Contemporary Playground
uses: theCheeseboard/actions/deploy-project@actions
with:
sourceDirectory: ${{ steps.playground.outputs.source-directory }}
buildDirectory: ${{ steps.playground.outputs.build-directory }}

0 comments on commit f43bbae

Please sign in to comment.