Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/android-library.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortobiasKaminsky <tobias@kaminsky.me>2020-10-30 13:35:33 +0300
committertobiasKaminsky <tobias@kaminsky.me>2020-10-30 13:35:33 +0300
commitdb53968f612d444607d465585215c7386c8b9eb9 (patch)
treeba838b8be774246f40b04b8a3f7a5026734cc7e2
parent121c3021d74794f49328f2e13b1a782b8032cf7a (diff)
Bump to 2.4rc-2.4.0-01
Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
-rw-r--r--.drone.yml14
-rwxr-xr-xscripts/analysis/analysis-wrapper.sh2
-rwxr-xr-xscripts/analysis/getBranchName.sh4
3 files changed, 10 insertions, 10 deletions
diff --git a/.drone.yml b/.drone.yml
index e8f89d24..3c3c601e 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -28,11 +28,11 @@ steps:
status:
- failure
branch:
- - master
+ - stable-2.4
trigger:
branch:
- - master
+ - stable-2.4
event:
- pull_request
- push
@@ -88,7 +88,7 @@ steps:
status:
- failure
branch:
- - master
+ - stable-2.4
services:
- name: server-master
@@ -114,7 +114,7 @@ services:
trigger:
branch:
- - master
+ - stable-2.4
event:
- push
- pull_request
@@ -169,7 +169,7 @@ steps:
status:
- failure
branch:
- - master
+ - stable-2.4
services:
- name: server-stable
@@ -239,11 +239,11 @@ steps:
status:
- failure
branch:
- - master
+ - stable-2.4
trigger:
branch:
- - master
+ - stable-2.4
event:
- push
- pull_request
diff --git a/scripts/analysis/analysis-wrapper.sh b/scripts/analysis/analysis-wrapper.sh
index de0aa041..61619944 100755
--- a/scripts/analysis/analysis-wrapper.sh
+++ b/scripts/analysis/analysis-wrapper.sh
@@ -8,7 +8,7 @@
#6: DRONE_BUILD_NUMBER
#7: PULL_REQUEST_NUMBER
-stableBranch="master"
+stableBranch="stable-2.4"
repository="library"
ruby scripts/analysis/lint-up.rb $1 $2 $3
diff --git a/scripts/analysis/getBranchName.sh b/scripts/analysis/getBranchName.sh
index 45c38cf7..da5ee850 100755
--- a/scripts/analysis/getBranchName.sh
+++ b/scripts/analysis/getBranchName.sh
@@ -3,7 +3,7 @@
# $1: username, $2: password/token, $3: pull request number
if [ -z $3 ] ; then
- echo "master";
+ echo "stable-2.4";
else
- curl 2>/dev/null -u $1:$2 https://api.github.com/repos/nextcloud/android-library/pulls/$3 | grep \"ref\": | grep -v '"master"' | cut -d"\"" -f4
+ curl 2>/dev/null -u $1:$2 https://api.github.com/repos/nextcloud/android-library/pulls/$3 | grep \"ref\": | grep -v '"stable-2.4"' | cut -d"\"" -f4
fi