summaryrefslogtreecommitdiff
path: root/bitbucket-pipelines.yml
diff options
context:
space:
mode:
authorGDR! <gdr@gdr.name>2020-08-15 09:45:39 +0200
committerGDR! <gdr@gdr.name>2020-08-15 09:45:39 +0200
commit9a008ae6371e95008ce947eb5603a585f0324f93 (patch)
tree6a2050e906f8ff9a03ee29c9d8a40781bd3baec5 /bitbucket-pipelines.yml
parenta15bc102fd84ae9325774abc3209eb7e8fcf5b39 (diff)
ci
Diffstat (limited to 'bitbucket-pipelines.yml')
-rw-r--r--bitbucket-pipelines.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml
new file mode 100644
index 0000000..15388ec
--- /dev/null
+++ b/bitbucket-pipelines.yml
@@ -0,0 +1,20 @@
1image: debian:sid
2pipelines:
3 default:
4 - step:
5 name: Build deb
6 image: debian:sid
7 caches:
8 - apt
9 script:
10 - apt update
11 - apt -y install pkg-config build-essential make libtoxcore-dev dh-make python3-jinja2 python3-requests
12 - dh_make --createorig -s
13 - dpkg-buildpackage -us -uc
14 - ls -l ..
15
16
17definitions:
18 caches:
19 apt: /var/cache/apt
20