Skip to content

task(SDK-5080) - release v7.8.0

75bb9a4
Select commit
Loading
Failed to load commit list.
Open

task(SDK-5080) - release v7.8.0 #34

task(SDK-5080) - release v7.8.0
75bb9a4
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Branch failed Jul 25, 2025 in 4m 1s

Build Failed

The build failed.

Details

This is a normal build for the task/SDK-5080/release-7.8.0 branch. You should be able to reproduce it by checking out the branch locally.

Jobs and Stages

This build only has a single job.
You can use jobs to test against multiple versions of your runtime or dependencies, or to speed up your build.

Build Configuration

Build Option Setting
Language Android
Operating System Linux (Bionic)
JDK Version openjdk17
Build Configuration
{
  "language": "android",
  "os": [
    "linux"
  ],
  "dist": "bionic",
  "jdk": [
    "openjdk17"
  ],
  "env": [
    "global={:JAVA_TOOL_OPTIONS=>\"-Dhttps.protocols=TLSv1.2\"}"
  ],
  "android": {
    "components": [
      "tools",
      "platform-tools",
      "tools",
      "build-tools;35.0.0",
      "platforms;android-35",
      "extras;android;m2repository"
    ],
    "licenses": [
      "android-sdk-preview-license-.+",
      "android-sdk-license-.+",
      "google-gdk-license-.+"
    ]
  },
  "before_install": [
    "mkdir -p keystore",
    "openssl aes-256-cbc -K $encrypted_3e25ea35f95b_key -iv $encrypted_3e25ea35f95b_iv -in signingkey.jks.enc -out keystore/signingkey.jks -d"
  ],
  "branches": {
    "except": [
      "/^untagged/"
    ]
  },
  "script": [
    "./gradlew test"
  ],
  "before_deploy": [
    "./gradlew assembleProdRelease",
    "export TRAVIS_TAG=$LEANPLUM_SDK_VERSION"
  ],
  "deploy": [
    {
      "dpl_version": "1.10.16",
      "provider": "releases",
      "skip_cleanup": true,
      "file": [
        "RondoApp/build/outputs/apk/prod/release/RondoApp-prod-release.apk"
      ],
      "name": "Android SDK $LEANPLUM_SDK_VERSION",
      "on": {
        "branch": [
          "master"
        ],
        "condition": [
          "-n \"$LEANPLUM_SDK_VERSION\""
        ]
      },
      "token": "${GITHUB_TOKEN}"
    }
  ],
  "after_deploy": [
    "GH_REPO=github.com/Leanplum/Rondo-Android.git",
    "REPO_NAME=Rondo-Android",
    "git clone https://${GH_REPO}",
    "cd ${REPO_NAME}",
    "git config user.email \"[email protected]\"",
    "git config user.name \"travis\"",
    "git commit --allow-empty -m \"Rondo released with SDK version $LEANPLUM_SDK_VERSION\"",
    "git push https://${ACCESS_TOKEN}@${GH_REPO} HEAD:master"
  ]
}