Welcome to mirror list, hosted at ThFree Co, Russian Federation.

.drone.yml - github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fb7c6a587483cd349debf81ecf0d33c0004bd5f5 (plain)
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
pipeline:
    clone:
        image: plugins/git
        depth: 1
    qt-5.6:
        image: nextcloudci/client-5.6:latest
        commands:
            # Install QtKeyChain
            - /bin/bash -c "
              source /opt/qt56/bin/qt56-env.sh &&
              cd /tmp &&
              git clone https://github.com/frankosterfeld/qtkeychain.git &&
              cd qtkeychain &&
              git checkout v0.8.0 &&
              mkdir build &&
              cd build &&
              cmake ../ &&
              make &&
              make install"
            # Build client
            - /bin/bash -c "
              source /opt/qt56/bin/qt56-env.sh &&
              mkdir build &&
              cd build &&
              cmake -D NO_SHIBBOLETH=1 ../ &&
              make"

#  Qt-5.6.2:
#    image: nextcloudci/client-5.6:client-5.6-1
#    commands:
#        - ls -l