Skip to content

Commit

Permalink
Update blank.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
lucasmz1 authored Nov 28, 2024
1 parent 7184f12 commit 321a21d
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
python3 -m pip install yaqti-2021.7.29-py3-none-any.whl
pyver=$(python3 --version | awk '{print $2}')
cp fetchers.py $HOME/.local/lib/python${pyver%.*}/site-packages/yaqti/
python -m yaqti install --os linux --platform desktop --version 6.8.0 --modules linux_gcc_64 --set-envs --install-deps
python -m yaqti install --os linux --platform desktop --version 6.7.3 --modules linux_gcc_64 --set-envs --install-deps
sudo add-apt-repository ppa:ubuntu-toolchain-r/ppa -y
sudo apt update
sudo add-apt-repository ppa:ubuntu-toolchain-r/test -y
Expand Down Expand Up @@ -79,13 +79,13 @@ jobs:
HEAD="$(git rev-parse --short HEAD)"
DATE="$(git show -s --format=%cd --date=format:%Y.%m.%d)"
VERSION="${DATE}_$HEAD"
export PATH=$PATH:$( find ${{github.workspace}}/qt/6.8.0/ -type d -printf ":%p" )
export QMAKE="${{github.workspace}}/qt/6.8.0/gcc_64/bin/"
export CMAKE_PREFIX_PATH="${{github.workspace}}/qt/6.8.0/gcc_64/"
export QT_DIR="$QT_DIR:${{github.workspace}}/qt/6.8.0/gcc_64/lib/cmake/Qt6/"
export PATH=$PATH:$( find ${{github.workspace}}/qt/6.7.3/ -type d -printf ":%p" )
export QMAKE="${{github.workspace}}/qt/6.7.3/gcc_64/bin/"
export CMAKE_PREFIX_PATH="${{github.workspace}}/qt/6.7.3/gcc_64/"
export QT_DIR="$QT_DIR:${{github.workspace}}/qt/6.7.3/gcc_64/lib/cmake/Qt6/"
mkdir -p "$HOME/.ccache"
mkdir Build && cd Build
cmake .. -GNinja -DLINUX_LOCAL_DEV=true -DCMAKE_PREFIX_PATH="${GITHUB_WORKSPACE}/qt/6.8.0/gcc_64/" -DCMAKE_INSTALL_PREFIX="/home/runner/work/Dolphin_emu_Appimage/Dolphin_emu_Appimage/lucas/usr/"
cmake .. -GNinja -DLINUX_LOCAL_DEV=true -DCMAKE_PREFIX_PATH="${GITHUB_WORKSPACE}/qt/6.7.3/gcc_64/" -DCMAKE_INSTALL_PREFIX="/home/runner/work/Dolphin_emu_Appimage/Dolphin_emu_Appimage/lucas/usr/"
ninja install
cd ..
cd ..
Expand All @@ -94,9 +94,9 @@ jobs:
- name: Build appimage
run: |
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$( find ${{github.workspace}}/qt/6.8.0/ -type d -printf ":%p" )
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$( find ${{github.workspace}}/qt/6.7.3/ -type d -printf ":%p" )
echo $LD_LIBRARY_PATH
export PATH=$PATH:$( find ${{github.workspace}}/qt/6.8.0/ -type d -printf ":%p" )
export PATH=$PATH:$( find ${{github.workspace}}/qt/6.7.3/ -type d -printf ":%p" )
echo $PATH
./qtplugin --appdir lucas/
./linuxdeploy --appdir lucas/
Expand Down

0 comments on commit 321a21d

Please sign in to comment.