summaryrefslogtreecommitdiff
path: root/bitbucket-pipelines.yml
blob: 38a7b44d440ad973ac3ed60e35cb7d526c471dba (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
32
pipelines:
  default:
    - parallel:
        - step:
            name: pylint
            runs-on:
              - 'self.hosted'
              - 'linux.shell'
            script:
              - python --version
              - pylint scripts/check_license.py
        - step:
            name: license headers check
            runs-on:
              - 'self.hosted'
              - 'linux.shell'
            script:
              - git submodule update --init
              - cmake -B build -GNinja
              - ninja -C build rekonq_check_license
  custom:
    FullBuildTest:
      - step:
          name: Debug Build
          runs-on:
            - 'self.hosted'
            - 'linux.shell'
          script:
            - git submodule update --init
            - cmake -B build -DCMAKE_BUILD_TYPE=Debug -DTESTING=ON -GNinja
            - ninja -C build
            - ninja -C build test