Skip to content

Commit

Permalink
cicd: no need for Qt webengine anymore
Browse files Browse the repository at this point in the history
While here, clean up CI/CD script a little
  • Loading branch information
skadge committed Dec 13, 2024
1 parent 87bc177 commit dd0320b
Showing 1 changed file with 2 additions and 20 deletions.
22 changes: 2 additions & 20 deletions .github/workflows/linux_release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Linux Release
name: Linux Compilation

on:
push:
Expand All @@ -20,7 +20,6 @@ defaults:
env:
SOURCE_DIR: ${{ github.workspace }}
QT_VERSION: 5.15.2
ARTIFACT: FlatFab.AppImage

jobs:
build:
Expand All @@ -37,7 +36,6 @@ jobs:
uses: jurplel/install-qt-action@v4
with:
version: ${{ env.QT_VERSION }}
modules: qtwebengine
setup-python: false

- name: Install other dependencies
Expand All @@ -51,20 +49,4 @@ jobs:
run: |
qmake -r ${{ env.SOURCE_DIR }}/FlatFab.pro
make
# TODO:
#- name: AppImage
# working-directory: ${{ env.SOURCE_DIR }}/build
# run: |
# wget -O deploy.AppImage https://github.com/probonopd/linuxdeployqt/releases/download/continuous/linuxdeployqt-continuous-x86_64.AppImage
# chmod +x deploy.AppImage
# export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:${{ github.workspace }}/Qt/5.15.2/gcc_64/lib/
# cp ${{ env.SOURCE_DIR }}/linux/* .
# ./deploy.AppImage FlatFab.desktop -appimage -no-translations -extra-plugins=renderers
# mv FlatFab*.AppImage ${{ env.ARTIFACT }}
#
#- name: Linux artefact
# uses: actions/upload-artifact@v4
# with:
# name: ${{ env.ARTIFACT }}
# path: ${{ env.SOURCE_DIR }}/build/${{ env.ARTIFACT }}

0 comments on commit dd0320b

Please sign in to comment.