diff --git a/.travis/build.sh b/.travis/build.sh deleted file mode 100755 index cb7afd13cb..0000000000 --- a/.travis/build.sh +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/bash - -git fetch --unshallow #required for commit count - -cp .travis/google-services.json app/ - -if [ -z "$TRAVIS_TAG" ]; then - ./gradlew clean assembleStandardDebug - - COMMIT_COUNT=$(git rev-list --count HEAD) - export ARTIFACT="tachiyomi-r${COMMIT_COUNT}.apk" - - mv app/build/outputs/apk/standard/debug/app-standard-debug.apk $ARTIFACT -else - ./gradlew clean assembleStandardRelease - - TOOLS="$(ls -d ${ANDROID_HOME}/build-tools/* | tail -1)" - export ARTIFACT="tachiyomi-${TRAVIS_TAG}.apk" - - ${TOOLS}/zipalign -v -p 4 app/build/outputs/apk/standard/release/app-standard-release-unsigned.apk app-aligned.apk - ${TOOLS}/apksigner sign --ks $STORE_PATH --ks-key-alias $STORE_ALIAS --ks-pass env:STORE_PASS --key-pass env:KEY_PASS --out $ARTIFACT app-aligned.apk -fi diff --git a/.travis/deploy.sh b/.travis/deploy.sh deleted file mode 100755 index c952226148..0000000000 --- a/.travis/deploy.sh +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/bash - -pattern="tachiyomi-r*" -files=( $pattern ) -export ARTIFACT="${files[0]}" - -if [ -z "$ARTIFACT" ]; then - echo "Artifact not found" - exit 1 -fi - -export SSHOPTIONS="-o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no -i ${DEPLOY_KEY}" - -scp $SSHOPTIONS $ARTIFACT $DEPLOY_USER@$DEPLOY_HOST:builds/ -ssh $SSHOPTIONS $DEPLOY_USER@$DEPLOY_HOST ln -sf $ARTIFACT builds/latest diff --git a/.travis/google-services.json b/.travis/google-services.json deleted file mode 100644 index 72d54700e4..0000000000 --- a/.travis/google-services.json +++ /dev/null @@ -1,73 +0,0 @@ -{ - "project_info": { - "project_number": "777921915939", - "firebase_url": "https://tachiyomi-47364.firebaseio.com", - "project_id": "tachiyomi-47364", - "storage_bucket": "tachiyomi-47364.appspot.com" - }, - "client": [ - { - "client_info": { - "mobilesdk_app_id": "1:777921915939:android:36544cd2d96c50c7", - "android_client_info": { - "package_name": "eu.kanade.tachiyomi" - } - }, - "oauth_client": [ - { - "client_id": "777921915939-9q25jvgbdtpk91daqlk7sa1cbdcg77o6.apps.googleusercontent.com", - "client_type": 3 - } - ], - "api_key": [ - { - "current_key": "AIzaSyAHr8RxyeiSPC_MxJTnivz-hmdo5oX0QQQ" - } - ], - "services": { - "analytics_service": { - "status": 1 - }, - "appinvite_service": { - "status": 1, - "other_platform_oauth_client": [] - }, - "ads_service": { - "status": 2 - } - } - }, - { - "client_info": { - "mobilesdk_app_id": "1:777921915939:android:564fdc1d62efd1de", - "android_client_info": { - "package_name": "eu.kanade.tachiyomi.debug" - } - }, - "oauth_client": [ - { - "client_id": "777921915939-9q25jvgbdtpk91daqlk7sa1cbdcg77o6.apps.googleusercontent.com", - "client_type": 3 - } - ], - "api_key": [ - { - "current_key": "AIzaSyAHr8RxyeiSPC_MxJTnivz-hmdo5oX0QQQ" - } - ], - "services": { - "analytics_service": { - "status": 1 - }, - "appinvite_service": { - "status": 1, - "other_platform_oauth_client": [] - }, - "ads_service": { - "status": 2 - } - } - } - ], - "configuration_version": "1" -} \ No newline at end of file diff --git a/.travis/secrets.tar.enc b/.travis/secrets.tar.enc deleted file mode 100644 index a3fa82b35d..0000000000 Binary files a/.travis/secrets.tar.enc and /dev/null differ