summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGDR! <gdr@gdr.name>2020-08-15 10:04:57 +0200
committerGDR! <gdr@gdr.name>2020-08-15 10:04:57 +0200
commit7d9b82acd6375b719a962fa36935c85aee240503 (patch)
treef9b66856872771746e846bee72493d61d4f1782c
parente055ec52c4fdbbdfd8878a01f642a69ba27713b2 (diff)
Lets try creating .tar.gz without dh_make
-rw-r--r--bitbucket-pipelines.yml7
1 files changed, 4 insertions, 3 deletions
diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml
index f8e9146..c656ee1 100644
--- a/bitbucket-pipelines.yml
+++ b/bitbucket-pipelines.yml
@@ -9,11 +9,12 @@ pipelines:
9 script: 9 script:
10 - apt update 10 - apt update
11 - apt -y install pkg-config build-essential make libtoxcore-dev dh-make python3-jinja2 python3-requests curl 11 - apt -y install pkg-config build-essential make libtoxcore-dev dh-make python3-jinja2 python3-requests curl
12 - echo tuntox_0.0.9.`date +%Y%m%d%H%M%S` >bb_version.txt 12 # - echo tuntox_0.0.9.`date +%Y%m%d%H%M%S` >bb_version.txt
13 - dh_make -y --createorig -s -p `cat bb_version.txt` || echo 13 #- dh_make -y --createorig -s -p `cat bb_version.txt` || echo
14 - tar -zcf ../tuntox_0.0.9.orig.tar.gz .
14 - dpkg-buildpackage -us -uc 15 - dpkg-buildpackage -us -uc
15 - ls -l .. 16 - ls -l ..
16 - curl -X POST "https://${BITBUCKET_USERNAME}:${BITBUCKET_APP_PASSWORD}@api.bitbucket.org/2.0/repositories/${BITBUCKET_REPO_OWNER}/${BITBUCKET_REPO_SLUG}/downloads" --form files=@"../"`cat bb_version.txt`"*.deb" 17 - curl -X POST "https://${BITBUCKET_USERNAME}:${BITBUCKET_APP_PASSWORD}@api.bitbucket.org/2.0/repositories/${BITBUCKET_REPO_OWNER}/${BITBUCKET_REPO_SLUG}/downloads" --form files=@"../tuntox_*.deb"
17 18
18 19
19 20