forked from open-craft/problem-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcircle.yml
155 lines (152 loc) · 4.74 KB
/
circle.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
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
version: 2.1
jobs:
build:
docker:
- image: circleci/python:2.7.14-browsers
parameters:
tox_env:
type: string
steps:
- checkout
- run:
name: Update system
command: |
sudo sed -i '/jessie-updates/d' /etc/apt/sources.list
sudo sed -i '/jessie-backports/d' /etc/apt/sources.list
sudo apt-get update
sudo apt-get install -y libgtk3.0-cil-dev libasound2 libasound2 libdbus-glib-1-2 libdbus-1-3 libgtk2.0-0
- run:
name: Install firefox 38.0.5
command: |
FIREFOX_URL="https://sourceforge.net/projects/ubuntuzilla/files/mozilla/apt/pool/main/f/firefox-mozilla-build/firefox-mozilla-build_38.0.5-0ubuntu1_amd64.deb/download"
sudo apt-get update
curl --silent --show-error --location --fail --retry 3 --output /tmp/firefox.deb $FIREFOX_URL
ls /tmp/
sudo dpkg -i /tmp/firefox.deb
rm -rf /tmp/firefox.deb
firefox --version
which firefox
- run:
name: Sync submodules
command: git submodule sync
- run:
name: Update submodules
command: git submodule update --init
- run:
name: Setup tox
command: virtualenv venv && venv/bin/pip install tox
- run:
name: Run tests
command: |
mkdir -p /tmp/coverage/$CIRCLE_SHA1
venv/bin/tox -e <<parameters.tox_env>>
if [ -e .coverage.* ]; then
cp .coverage.* /tmp/coverage/$CIRCLE_SHA1/.
fi
- persist_to_workspace:
root: /tmp
paths:
- coverage
coverage:
docker:
- image: circleci/python:2.7.14
steps:
- checkout
- run:
name: Update system
command: |
# The jessie-updates and jessie-backports areas are now removed from the repositories. So
# the lines corresponding to those areas have to be removed to fix the resulting errors.
# This can be removed after upgrading to the image based on Debian Stretch.
sudo sed -i '/jessie-updates/d' /etc/apt/sources.list
sudo sed -i '/jessie-backports/d' /etc/apt/sources.list
sudo apt-get update
sudo pip install --upgrade pip
sudo pip install --upgrade virtualenv
virtualenv venv
source venv/bin/activate
pip install -r test_requirements.txt
- attach_workspace:
at: /tmp/workspace
- run:
command: |
source venv/bin/activate
coverage combine /tmp/workspace/coverage/$CIRCLE_SHA1/
coverage report
deploy:
docker:
- image: circleci/python:2.7.14
steps:
- checkout
- restore_cache:
key: dependencies-{{ checksum "circle.yml" }}-{{ checksum "setup.py" }}
- run:
name: Install dependencies
command: |
virtualenv venv
. venv/bin/activate
pip install -U pip twine wheel
- save_cache:
key: dependencies-{{ checksum "circle.yml" }}-{{ checksum "setup.py" }}
paths:
- "venv"
- run:
name: Verify commit is tagged and tag matches version
command: |
. venv/bin/activate
python setup.py verify_tag
- run:
name: Initialize .pypirc
command: |
echo -e "[pypi]" >> ~/.pypirc
echo -e "username = opencraft" >> ~/.pypirc
echo -e "password = $PYPI_PASSWORD" >> ~/.pypirc
- run:
name: Create packages
command: |
python setup.py sdist
python setup.py bdist_wheel
- run:
name: Upload to pypi
command: |
. venv/bin/activate
twine upload dist/*
workflows:
version: 2
build_and_deploy:
jobs:
- build:
name: quality
tox_env: quality
filters:
tags:
only: /.*/
- build:
name: py27-django111-unit
tox_env: py27-django111-unit
filters:
tags:
only: /.*/
- build:
name: py27-django111-integration
tox_env: py27-django111-integration
filters:
tags:
only: /.*/
- coverage:
name: coverage
filters:
tags:
only: /.*/
requires:
- quality
- py27-django111-unit
- py27-django111-integration
- deploy:
requires:
- coverage
filters:
tags:
only: /v[0-9]+(\.[0-9]+)*/
branches:
ignore: /.*/