File tree Expand file tree Collapse file tree 4 files changed +45
-11
lines changed Expand file tree Collapse file tree 4 files changed +45
-11
lines changed Original file line number Diff line number Diff line change @@ -25,14 +25,34 @@ jobs:
2525 - run : python3-coverage run setup.py test
2626 # - codecov/upload:
2727 # when: on_success
28- build :
28+ build_bionic :
2929 docker :
3030 - image : ubuntu:bionic
3131 environment :
3232 LANG : C.UTF-8
3333 DEBIAN_FRONTEND : noninteractive
3434 steps :
3535 - checkout
36+ - run : sed -i 's/convertit (\([0-9]\+\.[0-9]\+\.[0-9]\+\)\(.*\)) RELEASED;/convertit (\1.ubuntu20.04\2) focal;/' debian/changelog
37+ - run : apt-get update -q
38+ - run : >
39+ apt-get update && apt-get install -y
40+ dh-virtualenv dpkg-dev debhelper dh-python python3-setuptools python3-all
41+ python3-venv
42+ unoconv inkscape
43+ - run : dpkg-buildpackage -uc -us
44+ - persist_to_workspace :
45+ root : /root
46+ paths : convertit_*_amd64.deb
47+ build_focal :
48+ docker :
49+ - image : ubuntu:focal
50+ environment :
51+ LANG : C.UTF-8
52+ DEBIAN_FRONTEND : noninteractive
53+ steps :
54+ - checkout
55+ - run : sed -i 's/convertit (\([0-9]\+\.[0-9]\+\.[0-9]\+\)\(.*\)) RELEASED;/convertit (\1.ubuntu18.04\2) bionic;/' debian/changelog
3656 - run : apt-get update -q
3757 - run : DEBIAN_FRONTEND=noninteractive apt-get install -q -y software-properties-common
3858 - run : add-apt-repository ppa:jyrki-pulliainen/dh-virtualenv
@@ -64,14 +84,28 @@ workflows:
6484 version : 2
6585 all :
6686 jobs :
67- - codestyle
68- - test
69- - build
87+ - codestyle :
88+ filters :
89+ tags :
90+ only : /[0-9]+\.[0-9]+\.[0-9]+/
91+ - test :
92+ filters :
93+ tags :
94+ only : /[0-9]+\.[0-9]+\.[0-9]+/
95+ - build_bionic :
96+ filters :
97+ tags :
98+ only : /[0-9]+\.[0-9]+\.[0-9]+/
99+ - build_focal :
100+ filters :
101+ tags :
102+ only : /[0-9]+\.[0-9]+\.[0-9]+/
70103 - publish :
71104 requires :
72105 - codestyle
73106 - test
74- - build
107+ - build_bionic
108+ - build_focal
75109 filters :
76110 tags :
77111 only : /[0-9]+\.[0-9]+\.[0-9]+/
Original file line number Diff line number Diff line change 22CHANGELOG
33=========
44
5- 2.2.4.dev0
5+ 2.2.4 (2021-01-13)
66------------------
77
8- -
8+ - Fix binding service
99
1010
11112.2.3 (2020-02-26)
Original file line number Diff line number Diff line change 1- convertit (2.2.4~dev0) bionic ; urgency=medium
1+ convertit (2.2.4) RELEASED ; urgency=medium
22
3- * ...
3+ * Fix binding service
44
5- -- Gaël UTARD <gael.utard @makina-corpus.com> Wed, 26 Feb 2020 08 :39:29 +0100
5+ -- Timothée DE MONTETY <timothee.de-montety @makina-corpus.com> Wed, 13 Jan 2021 09 :39:10 +0100
66
77convertit (2.2.3) bionic; urgency=medium
88
Original file line number Diff line number Diff line change 2222
2323
2424setup (name = 'convertit' ,
25- version = '2.2.4.dev0 ' ,
25+ version = '2.2.4' ,
2626 description = 'A file conversion Web API in Pyramid' ,
2727 long_description = README + '\n \n ' + CHANGES ,
2828 license = 'AGPLV3' ,
You can’t perform that action at this time.
0 commit comments