-
Notifications
You must be signed in to change notification settings - Fork 66
42 lines (32 loc) · 1.09 KB
/
ubuntu.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
name: Ubuntu
on: [push, pull_request]
env:
BUILD_TYPE: Release
jobs:
build:
# Ubuntu 20.04 is supported until April 2025
# See: https://wiki.ubuntu.com/Releases
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v4
- name: Create Build Environment
run: cmake -E make_directory ${{runner.workspace}}/build
- name: Install Dependencies
run: sudo apt update && sudo apt install build-essential qt5-default libqt5svg5-dev -y
- name: Configure CMake
shell: bash
working-directory: ${{runner.workspace}}/build
run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DUSE_TESTS=ON
- name: Build
working-directory: ${{runner.workspace}}/build
shell: bash
run: cmake --build . --config $BUILD_TYPE
- name: Test
working-directory: ${{runner.workspace}}/build/lib/test
shell: bash
run: ${{runner.workspace}}/build/lib/test/spotify-qt-lib-test
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: spotify-qt
path: ${{runner.workspace}}/build/spotify-qt