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

github.com/nextcloud/client_theming.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTaylor Smith <tsmith@tsmithcreative.com>2017-10-04 21:30:12 +0300
committerTaylor Smith <tsmith@tsmithcreative.com>2017-10-04 21:30:12 +0300
commit1c26e925c9959a54d4bc786229d5e14c211fa184 (patch)
treea32e6a514221e7a0f01d7d34fcbbe8cd36c1f262
parentf73b320e9972a89c7467b56494f477a6ec6d54d2 (diff)
Remove Ubuntu/Debian specific build steps from the Windows travis-build script
-rwxr-xr-xwin/travis-build.sh32
1 files changed, 0 insertions, 32 deletions
diff --git a/win/travis-build.sh b/win/travis-build.sh
index 99f8a84..200558d 100755
--- a/win/travis-build.sh
+++ b/win/travis-build.sh
@@ -9,19 +9,6 @@ shopt -s extglob
TRAVIS_BUILD_STEP="$1"
if [ "$TRAVIS_BUILD_STEP" == "install" ]; then
- sudo apt-get update -q
- sudo apt-get install -y devscripts cdbs osc
-
- if test "$encrypted_585e03da75ed_key" -a "$encrypted_585e03da75ed_iv"; then
- openssl aes-256-cbc -K $encrypted_585e03da75ed_key -iv $encrypted_585e03da75ed_iv -in linux/debian/signing-key.txt.enc -d | gpg --import
- echo "DEBUILD_DPKG_BUILDPACKAGE_OPTS='-k7D14AA7B'" >> ~/.devscripts
-
- openssl aes-256-cbc -K $encrypted_585e03da75ed_key -iv $encrypted_585e03da75ed_iv -in linux/debian/oscrc.enc -out ~/.oscrc -d
- elif test "$encrypted_8da7a4416c7a_key" -a "$encrypted_8da7a4416c7a_iv"; then
- openssl aes-256-cbc -K $encrypted_8da7a4416c7a_key -iv $encrypted_8da7a4416c7a_iv -in linux/debian/oscrc.enc -out ~/.oscrc -d
- PPA=ppa:ivaradi/nextcloud-client-exp
- fi
-
# @TODO: This patch updates the repo location of mingw _in the origin repo_
# because repositories/windows:/mingw/openSUSE_42.1/windows:mingw.repo has
# been moved to openSUSE Leap 42.1. This has been applied upstream but is
@@ -38,23 +25,4 @@ elif [ "$TRAVIS_BUILD_STEP" == "script" ]; then
docker build -t nextcloud-client-win32:${basever} client/admin/win/docker/
docker run -v "$PWD:/home/user/" nextcloud-client-win32:${basever} /home/user/win/build.sh $(id -u)
-
- cd ..
-
- echo "$kind" > kind
-
- if test "$kind" = "beta"; then
- repo=client-beta
- else
- repo=client
- fi
-
- origsourceopt=""
- #if ! wget http://ppa.launchpad.net/ivaradi/nextcloud-client-exp/ubuntu/pool/main/n/nextcloud-client/nextcloud-client_${basever}.orig.tar.bz2; then
- if ! wget http://ppa.launchpad.net/nextcloud-devs/${repo}/ubuntu/pool/main/n/nextcloud-client/nextcloud-client_${basever}.orig.tar.bz2; then
- mv client_theming nextcloud-client_${basever}
- tar cjf nextcloud-client_${basever}.orig.tar.bz2 --exclude .git nextcloud-client_${basever}
- mv nextcloud-client_${basever} client_theming
- origsourceopt="-sa"
- fi
fi