Skip to content

Commit

Permalink
test action
Browse files Browse the repository at this point in the history
  • Loading branch information
grodansparadis committed Jan 14, 2025
1 parent 8d01bdb commit 4a31c9d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/appimage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,11 @@ jobs:
# - name: Install mysql client
# run: sudo apt install libmysqlclient-dev

# https://github.com/marketplace/actions/install-qt 6.5.3
# https://github.com/marketplace/actions/install-qt
- name: Install Qt
uses: jurplel/install-qt-action@v4
with:
version: 6.7.3
version: 6.5.3
host: 'linux'
target: 'desktop'
arch: 'gcc_64'
Expand Down
6 changes: 3 additions & 3 deletions install/setenv.sh
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
#!/bin/bash

QT_BASE_DIR=/opt/qt515
QT_BASE_DIR=~/Qt/6.8.1/
export QTDIR=$QT_BASE_DIR
export PATH=$QT_BASE_DIR/bin:$PATH

if [[ $(uname -m) == "x86_64" ]]; then
export LD_LIBRARY_PATH=$QT_BASE_DIR/lib/x86_64-linux-gnu:$QT_BASE_DIR/lib:$LD_LIBRARY_PATH
export LD_LIBRARY_PATH=$QT_BASE_DIR/gcc_64/lib/:$QT_BASE_DIR/:$LD_LIBRARY_PATH
else
export LD_LIBRARY_PATH=$QT_BASE_DIR/lib/i386-linux-gnu:$QT_BASE_DIR/lib:$LD_LIBRARY_PATH
fi

export PKG_CONFIG_PATH=$QT_BASE_DIR/lib/pkgconfig:$PKG_CONFIG_PATH
export PKG_CONFIG_PATH=$QT_BASE_DIR/gcc_64/lib/pkgconfig:$PKG_CONFIG_PATH

TEST=`echo $0 | grep wrapper`
if [ "$TEST" != "" ]; then
Expand Down

0 comments on commit 4a31c9d

Please sign in to comment.