Skip to content

Commit

Permalink
Try Linux CI
Browse files Browse the repository at this point in the history
  • Loading branch information
vicr123 committed Apr 13, 2024
1 parent bfb08a7 commit 2613240
Show file tree
Hide file tree
Showing 2 changed files with 60 additions and 1 deletion.
59 changes: 59 additions & 0 deletions .github/workflows/linux-appimage.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: "Linux (AppImage) CI"
on:
push:
branches:
- '**'
release:
types: [published]
pull_request:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install Qt
uses: jurplel/install-qt-action@v3
with:
aqtversion: '==3.1.*'
version: '6.7.0'
host: 'mac'
target: 'desktop'
arch: 'clang_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-qml
uses: theCheeseboard/actions/build-cmake-project@actions
with:
project: theCheeseboard/contemporary-qml
commitish: main
- name: Install theterminal
id: theterminal
uses: theCheeseboard/actions/build-cmake-project@actions
with:
project: .
commitish: .
# - name: Deploy theterminal
# env:
# SOURCE_DIRECTORY: ${{ steps.theterminal.outputs.source-directory }}
# BUILD_DIRECTORY: ${{ steps.theterminal.outputs.build-directory }}
# INSTALL_DIRECTORY: ${{ steps.theterminal.outputs.install-directory }}
# run: |
# macdeployqt "$BUILD_DIRECTORY/application/"theTerminal*.app -qmlimport="$INSTALL_DIRECTORY/qml" -qmldir="$SOURCE_DIRECTORY"
# mkdir output
# mv "$BUILD_DIRECTORY/application/"theTerminal*.app ./output/
# - name: Upload theterminal artifact
# uses: actions/upload-artifact@v4
# with:
# name: theterminal-macos
# path: output
2 changes: 1 addition & 1 deletion .github/workflows/win.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "macOS CI"
name: "Windows CI"
on:
push:
branches:
Expand Down

0 comments on commit 2613240

Please sign in to comment.