Update Windows builds to VS 2022 #671
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Linux | |
on: [ push, pull_request ] | |
env: | |
BUILD_TYPE: Release | |
QT_VERSION: "6.8.0" | |
QT_ARCH: "linux_gcc_64" | |
jobs: | |
build: | |
# Qt 6 requires Ubuntu 20.04 | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install Qt | |
uses: jurplel/install-qt-action@v4 | |
with: | |
cache: true | |
version: ${{env.QT_VERSION}} | |
arch: ${{env.QT_ARCH}} | |
- name: Install Dependencies | |
run: sudo apt install libxkbcommon-x11-dev libxcb-cursor-dev -y | |
- name: Configure CMake | |
run: cmake . -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DCMAKE_INSTALL_PREFIX=/usr -DUSE_TESTS=ON -DUSE_LTO=ON | |
- name: Build | |
run: cmake --build . --config $BUILD_TYPE | |
- name: Test | |
run: ${{runner.workspace}}/spotify-qt/lib/test/spotify-qt-lib-test | |
- name: Install | |
run: make DESTDIR="${{runner.workspace}}/dist" install | |
- name: Download linuxdeploy | |
run: | | |
curl -L "https://github.com/linuxdeploy/linuxdeploy/releases/download/continuous/linuxdeploy-x86_64.AppImage" -o ${{runner.workspace}}/linuxdeploy-x86_64.AppImage | |
curl -L "https://github.com/linuxdeploy/linuxdeploy-plugin-appimage/releases/download/continuous/linuxdeploy-plugin-appimage-x86_64.AppImage" -o ${{runner.workspace}}/linuxdeploy-plugin-appimage-x86_64.AppImage | |
curl -L "https://github.com/linuxdeploy/linuxdeploy-plugin-qt/releases/download/continuous/linuxdeploy-plugin-qt-x86_64.AppImage" -o ${{runner.workspace}}/linuxdeploy-plugin-qt-x86_64.AppImage | |
chmod +x ${{runner.workspace}}/linuxdeploy-*.AppImage | |
- name: Copy OpenSSL | |
run: | | |
mkdir -p ${{runner.workspace}}/dist/usr/lib | |
cp /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1 ${{runner.workspace}}/dist/usr/lib/ | |
cp /usr/lib/x86_64-linux-gnu/libssl.so.1.1 ${{runner.workspace}}/dist/usr/lib/ | |
- name: Package | |
run: | | |
export OUTPUT="spotify-qt-$(git rev-parse --short HEAD)-x86_64.AppImage" | |
${{runner.workspace}}/linuxdeploy-x86_64.AppImage --appdir ${{runner.workspace}}/dist --output appimage --plugin qt -d ${{runner.workspace}}/dist/usr/share/applications/spotify-qt.desktop | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: spotify-qt | |
path: ${{runner.workspace}}/spotify-qt/spotify-qt-*.AppImage |