aboutsummaryrefslogtreecommitdiffstats
path: root/.github/workflows/linux-tumbleweed-qt-latest.yml
blob: 23d842183de5091ae99f5eb6216896a5fee72bc8 (plain) (blame)
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
43
44
45
46
47
48
49
50
name: openSUSE/Tumbleweed / Qt latest
on:
  push:
    branches:
    - master
  pull_request:
    branches:
    - master

jobs:
  buildInContainer:
    runs-on: ubuntu-latest
    container:
      image: opensuse/tumbleweed:latest

    steps:
    - name: checkout sources
      uses: actions/checkout@v1

    - name: get container ready for build
      run: |
        echo "--------------------------------------------------------------"
        echo "update distro and install dependencies"
        zypper -n install git gcc-c++ make autoconf automake libtool cmake libzip-devel \
        libxml2-devel libxslt-devel sqlite3-devel libusb-1_0-devel \
        libqt5-linguist-devel libqt5-qttools-devel libQt5WebKitWidgets-devel \
        libqt5-qtbase-devel libQt5WebKit5-devel libqt5-qtsvg-devel \
        libqt5-qtscript-devel libqt5-qtdeclarative-devel \
        libqt5-qtconnectivity-devel libqt5-qtlocation-devel libcurl-devel \
        libQt5QuickControls2-devel bluez-devel \
        which libgit2-devel libssh2-devel libmtp-devel

# if we want to run the tests below, add    xvfb-run

    - name: build Subsurface
      run: |
        echo "--------------------------------------------------------------"
        echo "building desktop"

        # now build for the desktop version (including WebKit)
        cd ..
        bash -e -x subsurface/scripts/build.sh -desktop -build-with-webkit

# let's not run the tests... to do that, we need to install 'xvfb-run' above
#   - name: test desktop build
#     run: |
#       echo "--------------------------------------------------------------"
#       echo "running tests for desktop"
#       cd build
#       xvfb-run --auto-servernum make check