File: .gitlab-ci.yml

package info (click to toggle)
bst-external 0.30.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 656 kB
  • sloc: python: 3,943; makefile: 53
file content (204 lines) | stat: -rw-r--r-- 5,070 bytes parent folder | download | duplicates (2)
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
image: buildstream/buildstream:latest-master-358226704

cache:
  paths:
    - cache/

stages:
  - prepare
  - test
  - coverage
  - docs
  - upload

default:
  interruptible: true

before_script:
  # Diagnostics
  - mount
  - df -h

  - adduser -m buildstream
  - chown -R buildstream:buildstream .

  - dnf install -y quilt qemu git-lfs make

  - python3 -mpip install --upgrade pip setuptools wheel  # for new wheel versions
  - python3 -mpip install pytest
  - python3 -mpip install pytest-cov
  - python3 -mpip install pytest-datafiles
  - python3 -mpip install pytest-env
  - python3 -mpip install pytest-pep8
  - python3 -mpip install pytest-xdist
  - python3 -mpip install toml
  - python3 -mpip install coverage==4.4.0
  - python3 -mpip install pep8
  - python3 -mpip install requests
  - python3 -mpip install twine

#####################################################
#                  Prepare stage                    #
#####################################################

# Create a source distribution
#
source_dist:
  stage: prepare
  script:

  # Generate the source distribution tarball
  #
  - python3 setup.py sdist
  - tar -ztf dist/*
  - tarball=$(cd dist && echo $(ls *))

  # Create an installer script
  - |
    cat > dist/install.sh << EOF
    #!/bin/sh
    tar -zxf ${tarball}
    cd ${tarball%.tar.gz}
    python3 -mpip install --no-index .
    EOF

  # unpack tarball as `dist/bst-external` directory
  - |
    cat > dist/unpack.sh << EOF
    #!/bin/sh
    tar -zxf ${tarball}
    mv ${tarball%.tar.gz} bst-external
    EOF

  # Make our helpers executable
  - chmod +x dist/install.sh
  - chmod +x dist/unpack.sh
  artifacts:
    paths:
    - dist/

#####################################################
#                    Test stage                     #
#####################################################

integration_linux:
  stage: test
  variables:
    PYTEST_ADDOPTS: "--color=yes"
  script:

    - export INTEGRATION_CACHE="$(pwd)/cache/integration-cache"
    
    # Unpack and get into dist/bst-external
    - cd dist && ./unpack.sh
    - chown -R buildstream:buildstream bst-external
    - cd bst-external
    # Install bst-external at this branch as the tests need it
    - python3 -mpip install --no-index .

    # Run the tests from the source distribution.
    # We run as a simple user to test for permission issues.
    - su buildstream -c 'python3 -mpytest .'

    # Go back top level and collect our reports
    - cd ../.. #you may only have to go back one level here...
    - mkdir -p coverage-linux/
    - cp dist/bst-external/.coverage coverage-linux/coverage.linux
  artifacts:
    paths:
    - coverage-linux/
  dependencies:
  - source_dist

integration_unix:
  stage: test
  variables:
    BST_FORCE_BACKEND: "unix"
    PYTEST_ADDOPTS: "--color=yes"
  script:

    - export INTEGRATION_CACHE="$(pwd)/cache/integration-cache"

    # Unpack and get into dist/bst-external
    - cd dist && ./unpack.sh && cd bst-external && python3 -mpip install --no-index .

    # Since the unix platform is required to run as root, no user change required
    - python3 -mpytest .

    # Go back top level and collect our reports
    - cd ../..
    - mkdir -p coverage-unix/
    - cp dist/bst-external/.coverage coverage-unix/coverage.unix

  artifacts:
    paths:
    - coverage-unix/
    - logs-unix/

  dependencies:
  - source_dist

#####################################################
#                Coverage stage                     #
#####################################################

# Collate coverage reports
#
coverage:
  stage: coverage
  coverage: '/TOTAL +\d+ +\d+ +(\d+\.\d+)%/'
  script:
    - cd dist && ./unpack.sh && cd bst-external
    - python3 -mpip install --no-index .
    - mkdir report
    - cd report
    - cp ../../../coverage-linux/coverage.linux .
    - cp ../../../coverage-unix/coverage.unix .
    - coverage combine --rcfile=../.coveragerc -a coverage.*
    - coverage report --rcfile=../.coveragerc -m
  dependencies:
  - source_dist
  - integration_linux
  - integration_unix

# Automatically build documentation, only for merges which land
# on master branch.

#####################################################
#                  Docs stage                       #
#####################################################

pages:
  stage: docs
  script:
  - python3 -mpip install sphinx
  - python3 -mpip install sphinx-click
  # Pin sphinx_rtd_theme because search functionality breaks
  # at the latest version
  - python3 -mpip install sphinx_rtd_theme>=0.4.2
  - python3 -mpip install --user .
  - make -C doc
  - mv doc/build/html public
  artifacts:
    paths:
    - public/
  only:
  - master


# Automatically upload to PyPI when a release is tagged.

#####################################################
#               Upload stage                        #
#####################################################

upload:
  stage: upload
  script:
  - twine upload dist/*.tar.gz
  dependencies:
  - source_dist
  only:
  - /[0-9]+\.[0-9]+\.[0-9]+/
  except:
  - branches