I have a simple Android app on bitrise and I havenβt changed any of the configurations from the default that bitrise auto configured for me. Everything works great on bitrise.io
I want to see if I can run it locally so I ran brew update && brew install bitrise
then I bitrise setup
and it looks like everything is good to go.
I then followed the instruction at the end of the bitrise setup
command and cd into your proj dir, then call bitrise init
I called bitrise init
and it created .bitrise.secrets.yml and bitrise.yml
Now I went to bitrise.io and copied the yml from there and pasted it into the bitrise.yml on my local.
It fails after the first run. I guess because it doesnβt have the right values that would normally come from bitrise.io. What other values should I replace? Is there a tutorial for this where I want to replicate bitrise.io onto my local? #<RuntimeError: No repository repository_url specified>
Sorry for the maybe simple/stupid questions. This is my first CI that Iβm working with 
2 Likes
Hmmm that seems to be a Ruby exception. Ruby is not used in the CLI directly anywhere, but certain steps might use it.
Could you please copy paste the related bitrise.io buildβs URL? Weβll check it ASAP! 
No, not at all, thanks for reporting / creating this thread! 
Sure! I would really love help with this issue. This is the main thing keeping me from going all in on bitrise. I really love the idea of being able to run bitrise locally (especially to try out new things).
Basically, I have a project.
I cd into it
bitrise setup
the setup step tells me call bitrise init and follow the guide
I then bitrise init
It tell me a bitrise.yml was generated and .bitrise.secrets.yml
The generated bitrise.yml looks like this
format_version: "5"
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
project_type: android
app:
envs:
- GRADLE_BUILD_FILE_PATH: build.gradle
- GRADLEW_PATH: ./gradlew
trigger_map:
- push_branch: '*'
workflow: primary
- pull_request_source_branch: '*'
workflow: primary
workflows:
deploy:
steps:
- activate-ssh-key@3.1.1:
run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}'
- git-clone@4.0.5: {}
- cache-pull@2.0.1: {}
- script@1.1.5:
title: Do anything with Script step
- install-missing-android-tools@2.0.6: {}
- gradle-runner@1.8.0:
inputs:
- gradle_file: $GRADLE_BUILD_FILE_PATH
- gradle_task: assembleRelease
- gradlew_path: $GRADLEW_PATH
- deploy-to-bitrise-io@1.3.10: {}
- cache-push@2.0.3: {}
primary:
steps:
- activate-ssh-key@3.1.1:
run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}'
- git-clone@4.0.5: {}
- cache-pull@2.0.1: {}
- script@1.1.5:
title: Do anything with Script step
- install-missing-android-tools@2.0.6: {}
- gradle-runner@1.8.0:
inputs:
- gradle_file: $GRADLE_BUILD_FILE_PATH
- gradle_task: assembleDebug
- gradlew_path: $GRADLEW_PATH
- deploy-to-bitrise-io@1.3.10: {}
- cache-push@2.0.3: {}
I find it interesting that format version: "5"
My yml from bitrise.io is this:
---
format_version: '4'
default_step_lib_source: https://github.com/bitrise-io/bitrise-steplib.git
project_type: android
trigger_map:
- push_branch: "*"
workflow: primary
- pull_request_source_branch: "*"
workflow: primary
workflows:
deploy:
steps:
- activate-ssh-key@3.1.1:
run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}'
- git-clone@4.0.5: {}
- cache-pull@2.0.1: {}
- script@1.1.5:
title: Do anything with Script step
- install-missing-android-tools@2.0.6: {}
- gradle-runner@1.8.0:
inputs:
- gradle_file: "$GRADLE_BUILD_FILE_PATH"
- gradle_task: assembleRelease
- gradlew_path: "$GRADLEW_PATH"
- deploy-to-bitrise-io@1.3.10: {}
- cache-push@2.0.3: {}
primary:
steps:
- github-status@1.1.1:
inputs:
- status_identifier: statusOne
- set_specific_status: pending
- auth_token: REMOVED
- github-status@1.1.1:
inputs:
- status_identifier: statusTwo
- set_specific_status: pending
- auth_token: REMOVED
- activate-ssh-key@3.1.1:
run_if: '{{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}'
- git-clone@4.0.5: {}
- cache-pull@2.0.1: {}
- script@1.1.5:
title: Do anything with Script step
- install-missing-android-tools@2.0.6: {}
- gradle-runner@1.8.0:
inputs:
- gradle_file: "$GRADLE_BUILD_FILE_PATH"
- gradle_task: assembleDebug
- gradlew_path: "$GRADLEW_PATH"
- deploy-to-bitrise-io@1.3.10: {}
- cache-push@2.0.3: {}
- github-status@1.1.1:
inputs:
- status_identifier: statusOne
- auth_token: REMOVED
- github-status@1.1.1:
inputs:
- status_identifier: statusTwo
- auth_token: REMOVED
app:
envs:
- opts:
is_expand: false
GRADLE_BUILD_FILE_PATH: build.gradle
- opts:
is_expand: false
GRADLEW_PATH: "./gradlew"
This format version is format_version: '4'
Here is the link to my bitrise: https://www.bitrise.io/app/c52a6f9f472b22aa#/workflow
I enabled support in settings. Thanks @viktorbenei looking forward to figuring this out
@coltonidle are you sure you copied the right appβs bitrise.io URL? Checked it and it seems it only has 2 builds, both successful.
Or do you mean that it works on bitrise.io but not on local?
βOr do you mean that it works on bitrise.io but not on local?β Yes!
It works on bitrise, but not on local and Iβm not sure what Iβm doing wrong. A big selling point of bitrise I think is being able to run locally and I feel like Iβm missing something obvious.
Got it. Then can you please attach the log from your Terminal?
bitrise setup
All the required tools are installed! We're ready to rock!!
To start using bitrise:
* cd into your project's directory (if you're not there already)
* call: bitrise init
* follow the guide
That's all :)
bitrise init (I called this already, but Iβm doing it again)
Checking for plugin (init) new version...
FATA[15:50:12] config path (./bitrise.yml) already exist
FATA[15:50:12] Failed to run plugin (init), error: exit status 1
bitrise run primary
βββββββ βββββββββββββββββββ βββββββββββββββββββ
βββββββββββββββββββββββββββββββββββββββββββββββ
βββββββββββ βββ βββββββββββββββββββββββββ
βββββββββββ βββ βββββββββββββββββββββββββ
βββββββββββ βββ βββ ββββββββββββββββββββββ
βββββββ βββ βββ βββ ββββββββββββββββββββββ
version: 1.13.0
INFO[15:51:12] Running workflow: primary
Switching to workflow: primary
+------------------------------------------------------------------------------+
| (0) activate-ssh-key@3.1.1 |
+------------------------------------------------------------------------------+
| id: activate-ssh-key |
| version: 3.1.1 |
| collection: https://github.com/bitrise-io/bitrise-steplib.git |
| toolkit: bash |
| time: 2018-03-08T15:51:13-05:00 |
+------------------------------------------------------------------------------+
| |
WARN[15:51:13] The step's (activate-ssh-key@3.1.1) Run-If expression evaluated to false - skipping
INFO[15:51:13] The Run-If expression was: {{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}
| |
+---+---------------------------------------------------------------+----------+
| - | activate-ssh-key@3.1.1 | 0.28 sec |
+---+---------------------------------------------------------------+----------+
βΌ
+------------------------------------------------------------------------------+
| (1) git-clone@4.0.5 |
+------------------------------------------------------------------------------+
| id: git-clone |
| version: 4.0.5 |
| collection: https://github.com/bitrise-io/bitrise-steplib.git |
| toolkit: go |
| time: 2018-03-08T15:51:13-05:00 |
+------------------------------------------------------------------------------+
| |
WARN[15:51:13] The step's (git-clone@4.0.5) Run-If expression evaluated to false - skipping
INFO[15:51:13] The Run-If expression was: .IsCI
| |
+---+---------------------------------------------------------------+----------+
| - | git-clone@4.0.5 | 0.32 sec |
+---+---------------------------------------------------------------+----------+
| Update available: 4.0.5 -> 4.0.9 |
+---+---------------------------------------------------------------+----------+
βΌ
+------------------------------------------------------------------------------+
| (2) cache-pull@2.0.1 |
+------------------------------------------------------------------------------+
| id: cache-pull |
| version: 2.0.1 |
| collection: https://github.com/bitrise-io/bitrise-steplib.git |
| toolkit: go |
| time: 2018-03-08T15:51:13-05:00 |
+------------------------------------------------------------------------------+
| |
WARN[15:51:13] The step's (cache-pull@2.0.1) Run-If expression evaluated to false - skipping
INFO[15:51:13] The Run-If expression was: .IsCI
| |
+---+---------------------------------------------------------------+----------+
| - | cache-pull@2.0.1 | 0.30 sec |
+---+---------------------------------------------------------------+----------+
βΌ
+------------------------------------------------------------------------------+
| (3) Do anything with Script step |
+------------------------------------------------------------------------------+
| id: script |
| version: 1.1.5 |
| collection: https://github.com/bitrise-io/bitrise-steplib.git |
| toolkit: bash |
| time: 2018-03-08T15:51:14-05:00 |
+------------------------------------------------------------------------------+
| |
+ echo 'Hello World!'
Hello World!
| |
+---+---------------------------------------------------------------+----------+
| β | Do anything with Script step | 0.36 sec |
+---+---------------------------------------------------------------+----------+
βΌ
+------------------------------------------------------------------------------+
| (4) install-missing-android-tools@2.0.6 |
+------------------------------------------------------------------------------+
| id: install-missing-android-tools |
| version: 2.0.6 |
| collection: https://github.com/bitrise-io/bitrise-steplib.git |
| toolkit: go |
| time: 2018-03-08T15:51:14-05:00 |
+------------------------------------------------------------------------------+
| |
INFO[15:51:14] * [OK] Step dependency (go) installed, available.
Configs:
- RootBuildGradleFile: build.gradle
- GradlewPath: ./gradlew
- AndroidHome:
Issue with input: no ANDROID_HOME set
| |
+---+---------------------------------------------------------------+----------+
| x | install-missing-android-tools@2.0.6 (exit code: 1) | 0.37 sec |
+---+---------------------------------------------------------------+----------+
| Update available: 2.0.6 -> 2.1.1 |
| Issue tracker: ...bitrise-steplib/steps-install-missing-android-tools/issues |
| Source: ...://github.com/bitrise-steplib/steps-install-missing-android-tools |
+---+---------------------------------------------------------------+----------+
βΌ
+------------------------------------------------------------------------------+
| (5) gradle-runner@1.8.0 |
+------------------------------------------------------------------------------+
| id: gradle-runner |
| version: 1.8.0 |
| collection: https://github.com/bitrise-io/bitrise-steplib.git |
| toolkit: go |
| time: 2018-03-08T15:51:14-05:00 |
+------------------------------------------------------------------------------+
| |
WARN[15:51:14] A previous step failed, and this step (gradle-runner@1.8.0) was not marked as IsAlwaysRun, skipped
| |
+---+---------------------------------------------------------------+----------+
| - | gradle-runner@1.8.0 | 0.27 sec |
+---+---------------------------------------------------------------+----------+
| Update available: 1.8.0 -> 1.8.3 |
+---+---------------------------------------------------------------+----------+
βΌ
+------------------------------------------------------------------------------+
| (6) deploy-to-bitrise-io@1.3.10 |
+------------------------------------------------------------------------------+
| id: deploy-to-bitrise-io |
| version: 1.3.10 |
| collection: https://github.com/bitrise-io/bitrise-steplib.git |
| toolkit: go |
| time: 2018-03-08T15:51:15-05:00 |
+------------------------------------------------------------------------------+
| |
WARN[15:51:15] The step's (deploy-to-bitrise-io@1.3.10) Run-If expression evaluated to false - skipping
INFO[15:51:15] The Run-If expression was: .IsCI
| |
+---+---------------------------------------------------------------+----------+
| - | deploy-to-bitrise-io@1.3.10 | 0.35 sec |
+---+---------------------------------------------------------------+----------+
βΌ
+------------------------------------------------------------------------------+
| (7) cache-push@2.0.3 |
+------------------------------------------------------------------------------+
| id: cache-push |
| version: 2.0.3 |
| collection: https://github.com/bitrise-io/bitrise-steplib.git |
| toolkit: go |
| time: 2018-03-08T15:51:15-05:00 |
+------------------------------------------------------------------------------+
| |
WARN[15:51:15] The step's (cache-push@2.0.3) Run-If expression evaluated to false - skipping
INFO[15:51:15] The Run-If expression was: .IsCI | and (not .IsPR)
| |
+---+---------------------------------------------------------------+----------+
| - | cache-push@2.0.3 | 0.32 sec |
+---+---------------------------------------------------------------+----------+
| Update available: 2.0.3 -> 2.0.5 |
+---+---------------------------------------------------------------+----------+
+------------------------------------------------------------------------------+
| bitrise summary |
+---+---------------------------------------------------------------+----------+
| | title | time (s) |
+---+---------------------------------------------------------------+----------+
| - | activate-ssh-key@3.1.1 | 0.28 sec |
+---+---------------------------------------------------------------+----------+
| - | git-clone@4.0.5 | 0.32 sec |
+---+---------------------------------------------------------------+----------+
| Update available: 4.0.5 -> 4.0.9 |
+---+---------------------------------------------------------------+----------+
| - | cache-pull@2.0.1 | 0.30 sec |
+---+---------------------------------------------------------------+----------+
| β | Do anything with Script step | 0.36 sec |
+---+---------------------------------------------------------------+----------+
| x | install-missing-android-tools@2.0.6 (exit code: 1) | 0.37 sec |
+---+---------------------------------------------------------------+----------+
| Update available: 2.0.6 -> 2.1.1 |
| Issue tracker: ...bitrise-steplib/steps-install-missing-android-tools/issues |
| Source: ...://github.com/bitrise-steplib/steps-install-missing-android-tools |
+---+---------------------------------------------------------------+----------+
| - | gradle-runner@1.8.0 | 0.27 sec |
+---+---------------------------------------------------------------+----------+
| Update available: 1.8.0 -> 1.8.3 |
+---+---------------------------------------------------------------+----------+
| - | deploy-to-bitrise-io@1.3.10 | 0.35 sec |
+---+---------------------------------------------------------------+----------+
| - | cache-push@2.0.3 | 0.32 sec |
+---+---------------------------------------------------------------+----------+
| Update available: 2.0.3 -> 2.0.5 |
+---+---------------------------------------------------------------+----------+
| Total runtime: 2.55 sec |
+------------------------------------------------------------------------------+
Checking for plugin (analytics) new version...
Submitting anonymized usage informations...
For more information visit:
https://github.com/bitrise-core/bitrise-plugins-analytics/blob/master/README.md
You can see this error in the install-missing-android-tools
step @coltonidle
This means that thereβs ANDROID_HOME environment set, so gradle does not know where the android sdk it.
Please either set this env var before bitrise run
, or you can also bitrise :workflow-editor
and set it as a Secret as it is specific to your own Mac/environment.
Key is: ANDROID_HOME
Value is the path to the Android SDK dir, e.g. /Users/viktorbenei/Library/Android/sdk/
@viktorbenei
Oh man. I canβt believe that I missed that.
I THINK IT WAS SUCCESSFUL. (I donβt know though)
Here was my output
βββββββ βββββββββββββββββββ βββββββββββββββββββ
βββββββββββββββββββββββββββββββββββββββββββββββ
βββββββββββ βββ βββββββββββββββββββββββββ
βββββββββββ βββ βββββββββββββββββββββββββ
βββββββββββ βββ βββ ββββββββββββββββββββββ
βββββββ βββ βββ βββ ββββββββββββββββββββββ
version: 1.13.0
INFO[10:16:23] Running workflow: primary
Switching to workflow: primary
+------------------------------------------------------------------------------+
| (0) activate-ssh-key@3.1.1 |
+------------------------------------------------------------------------------+
| id: activate-ssh-key |
| version: 3.1.1 |
| collection: https://github.com/bitrise-io/bitrise-steplib.git |
| toolkit: bash |
| time: 2018-03-10T10:16:23-05:00 |
+------------------------------------------------------------------------------+
| |
WARN[10:16:23] The step's (activate-ssh-key@3.1.1) Run-If expression evaluated to false - skipping
INFO[10:16:23] The Run-If expression was: {{getenv "SSH_RSA_PRIVATE_KEY" | ne ""}}
| |
+---+---------------------------------------------------------------+----------+
| - | activate-ssh-key@3.1.1 | 0.27 sec |
+---+---------------------------------------------------------------+----------+
βΌ
+------------------------------------------------------------------------------+
| (1) git-clone@4.0.5 |
+------------------------------------------------------------------------------+
| id: git-clone |
| version: 4.0.5 |
| collection: https://github.com/bitrise-io/bitrise-steplib.git |
| toolkit: go |
| time: 2018-03-10T10:16:24-05:00 |
+------------------------------------------------------------------------------+
| |
WARN[10:16:24] The step's (git-clone@4.0.5) Run-If expression evaluated to false - skipping
INFO[10:16:24] The Run-If expression was: .IsCI
| |
+---+---------------------------------------------------------------+----------+
| - | git-clone@4.0.5 | 0.29 sec |
+---+---------------------------------------------------------------+----------+
| Update available: 4.0.5 -> 4.0.9 |
+---+---------------------------------------------------------------+----------+
βΌ
+------------------------------------------------------------------------------+
| (2) cache-pull@2.0.1 |
+------------------------------------------------------------------------------+
| id: cache-pull |
| version: 2.0.1 |
| collection: https://github.com/bitrise-io/bitrise-steplib.git |
| toolkit: go |
| time: 2018-03-10T10:16:24-05:00 |
+------------------------------------------------------------------------------+
| |
WARN[10:16:24] The step's (cache-pull@2.0.1) Run-If expression evaluated to false - skipping
INFO[10:16:24] The Run-If expression was: .IsCI
| |
+---+---------------------------------------------------------------+----------+
| - | cache-pull@2.0.1 | 0.29 sec |
+---+---------------------------------------------------------------+----------+
βΌ
+------------------------------------------------------------------------------+
| (3) Do anything with Script step |
+------------------------------------------------------------------------------+
| id: script |
| version: 1.1.5 |
| collection: https://github.com/bitrise-io/bitrise-steplib.git |
| toolkit: bash |
| time: 2018-03-10T10:16:24-05:00 |
+------------------------------------------------------------------------------+
| |
+ echo 'Hello World!'
Hello World!
| |
+---+---------------------------------------------------------------+----------+
| β | Do anything with Script step | 0.36 sec |
+---+---------------------------------------------------------------+----------+
βΌ
+------------------------------------------------------------------------------+
| (4) install-missing-android-tools@2.0.6 |
+------------------------------------------------------------------------------+
| id: install-missing-android-tools |
| version: 2.0.6 |
| collection: https://github.com/bitrise-io/bitrise-steplib.git |
| toolkit: go |
| time: 2018-03-10T10:16:25-05:00 |
+------------------------------------------------------------------------------+
| |
INFO[10:16:25] * [OK] Step dependency (go) installed, available.
Configs:
- RootBuildGradleFile: build.gradle
- GradlewPath: ./gradlew
- AndroidHome: /Users/coltonidle/Dev/Android/SDK
Preparation
Set executable permission for gradlew
Initialize Android SDK
Ensure android licences
Ensure required Android SDK components
Searching for missing SDK components using:
$ ./gradlew "dependencies"
Required SDK components are installed
| |
+---+---------------------------------------------------------------+----------+
| β | install-missing-android-tools@2.0.6 | 29 sec |
+---+---------------------------------------------------------------+----------+
| Update available: 2.0.6 -> 2.1.1 |
+---+---------------------------------------------------------------+----------+
βΌ
+------------------------------------------------------------------------------+
| (5) gradle-runner@1.8.0 |
+------------------------------------------------------------------------------+
| id: gradle-runner |
| version: 1.8.0 |
| collection: https://github.com/bitrise-io/bitrise-steplib.git |
| toolkit: go |
| time: 2018-03-10T10:16:53-05:00 |
+------------------------------------------------------------------------------+
| |
INFO[10:16:53] * [OK] Step dependency (go) installed, available.
Configs:
- GradlewPath: ./gradlew
- GradleFile: build.gradle
- GradleTasks: assembleDebug
- GradleOptions: --stacktrace --no-daemon
- ApkFileIncludeFilter: *.apk
- ApkFileExcludeFilter: *unaligned.apk
*Test*.apk
- TestApkFileIncludeFilter: *Test*.apk
- TestApkFileExcludeFilter:
- MappingFileIncludeFilter: */mapping.txt
- MappingFileExcludeFilter:
- DeployDir: /var/folders/25/hs76h2h56tj7m4xhlbtfj7640000gn/T/deploy888310406
- CacheLevel: only_deps
Running gradle task...
./gradlew "--build-file" "build.gradle" "assembleDebug" "--stacktrace" "--no-daemon"
To honour the JVM settings for this build a new JVM will be forked. Please consider using the daemon: https://docs.gradle.org/3.3/userguide/gradle_daemon.html.
Daemon will be stopped at the end of the build stopping after processing
NDK is missing a "platforms" directory.
If you are using NDK, verify the ndk.dir is set to a valid NDK directory. It is currently set to /Users/coltonidle/Dev/Android/SDK/ndk-bundle.
If you are not using NDK, unset the NDK variable from ANDROID_NDK_HOME or local.properties to remove this warning.
Incremental java compilation is an incubating feature.
:app:preBuild UP-TO-DATE
:app:preDebugBuild UP-TO-DATE
:app:checkDebugManifest
:app:preReleaseBuild UP-TO-DATE
:app:prepareComAndroidSupportSupportCompat2531Library
:app:prepareComAndroidSupportSupportCoreUi2531Library
:app:prepareComAndroidSupportSupportCoreUtils2531Library
:app:prepareComAndroidSupportSupportFragment2531Library
:app:prepareComAndroidSupportSupportMediaCompat2531Library
:app:prepareComAndroidSupportSupportV42531Library
:app:prepareDebugDependencies
:app:compileDebugAidl
:app:compileDebugRenderscript
:app:generateDebugBuildConfig
:app:generateDebugResValues
:app:generateDebugResources
:app:mergeDebugResources
:app:processDebugManifest
:app:processDebugResources
:app:generateDebugSources
:app:incrementalDebugJavaCompilationSafeguard
:app:javaPreCompileDebug
:app:compileDebugJavaWithJavac
:app:compileDebugJavaWithJavac - is not incremental (e.g. outputs have changed, no previous execution, etc.).
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.
:app:compileDebugNdk UP-TO-DATE
:app:compileDebugSources
:app:mergeDebugShaders
:app:compileDebugShaders
:app:generateDebugAssets
:app:mergeDebugAssets
:app:transformClassesWithDexForDebug
:app:mergeDebugJniLibFolders
:app:transformNativeLibsWithMergeJniLibsForDebug
:app:processDebugJavaRes UP-TO-DATE
:app:transformResourcesWithMergeJavaResForDebug
:app:validateSigningDebug
:app:packageDebug
:app:assembleDebug
BUILD SUCCESSFUL
Total time: 9.971 secs
Collecting gradle caches...
Generate dependencies map...
Done
Move apk files...
find "." "-path" "*.apk" "!" "-path" "*unaligned.apk" "!" "-path" "*Test*.apk"
copy ./app/build/outputs/apk/app-debug.apk to /var/folders/25/hs76h2h56tj7m4xhlbtfj7640000gn/T/deploy888310406/app-debug.apk
The apk path is now available in the Environment Variable: $BITRISE_APK_PATH (value: /var/folders/25/hs76h2h56tj7m4xhlbtfj7640000gn/T/deploy888310406/app-debug.apk)
The apk paths list is now available in the Environment Variable: $BITRISE_APK_PATH_LIST (value: /var/folders/25/hs76h2h56tj7m4xhlbtfj7640000gn/T/deploy888310406/app-debug.apk)
find "." "-path" "*Test*.apk"
No file name matched test apk filters
Move mapping files...
find "." "-path" "*/mapping.txt"
No mapping file matched the filters
| |
+---+---------------------------------------------------------------+----------+
| β | gradle-runner@1.8.0 | 12 sec |
+---+---------------------------------------------------------------+----------+
| Update available: 1.8.0 -> 1.8.3 |
+---+---------------------------------------------------------------+----------+
βΌ
+------------------------------------------------------------------------------+
| (6) deploy-to-bitrise-io@1.3.10 |
+------------------------------------------------------------------------------+
| id: deploy-to-bitrise-io |
| version: 1.3.10 |
| collection: https://github.com/bitrise-io/bitrise-steplib.git |
| toolkit: go |
| time: 2018-03-10T10:17:06-05:00 |
+------------------------------------------------------------------------------+
| |
WARN[10:17:06] The step's (deploy-to-bitrise-io@1.3.10) Run-If expression evaluated to false - skipping
INFO[10:17:06] The Run-If expression was: .IsCI
| |
+---+---------------------------------------------------------------+----------+
| - | deploy-to-bitrise-io@1.3.10 | 0.37 sec |
+---+---------------------------------------------------------------+----------+
βΌ
+------------------------------------------------------------------------------+
| (7) cache-push@2.0.3 |
+------------------------------------------------------------------------------+
| id: cache-push |
| version: 2.0.3 |
| collection: https://github.com/bitrise-io/bitrise-steplib.git |
| toolkit: go |
| time: 2018-03-10T10:17:06-05:00 |
+------------------------------------------------------------------------------+
| |
WARN[10:17:06] The step's (cache-push@2.0.3) Run-If expression evaluated to false - skipping
INFO[10:17:06] The Run-If expression was: .IsCI | and (not .IsPR)
| |
+---+---------------------------------------------------------------+----------+
| - | cache-push@2.0.3 | 0.34 sec |
+---+---------------------------------------------------------------+----------+
| Update available: 2.0.3 -> 2.0.5 |
+---+---------------------------------------------------------------+----------+
+------------------------------------------------------------------------------+
| bitrise summary |
+---+---------------------------------------------------------------+----------+
| | title | time (s) |
+---+---------------------------------------------------------------+----------+
| - | activate-ssh-key@3.1.1 | 0.27 sec |
+---+---------------------------------------------------------------+----------+
| - | git-clone@4.0.5 | 0.29 sec |
+---+---------------------------------------------------------------+----------+
| Update available: 4.0.5 -> 4.0.9 |
+---+---------------------------------------------------------------+----------+
| - | cache-pull@2.0.1 | 0.29 sec |
+---+---------------------------------------------------------------+----------+
| β | Do anything with Script step | 0.36 sec |
+---+---------------------------------------------------------------+----------+
| β | install-missing-android-tools@2.0.6 | 29 sec |
+---+---------------------------------------------------------------+----------+
| Update available: 2.0.6 -> 2.1.1 |
+---+---------------------------------------------------------------+----------+
| β | gradle-runner@1.8.0 | 12 sec |
+---+---------------------------------------------------------------+----------+
| Update available: 1.8.0 -> 1.8.3 |
+---+---------------------------------------------------------------+----------+
| - | deploy-to-bitrise-io@1.3.10 | 0.37 sec |
+---+---------------------------------------------------------------+----------+
| - | cache-push@2.0.3 | 0.34 sec |
+---+---------------------------------------------------------------+----------+
| Update available: 2.0.3 -> 2.0.5 |
+---+---------------------------------------------------------------+----------+
| Total runtime: 43 sec |
+------------------------------------------------------------------------------+
Submitting anonymized usage informations...
For more information visit:
https://github.com/bitrise-core/bitrise-plugins-analytics/blob/master/README.md
Checking for new CLI version...
Checking for plugin (init) new version...
Checking for plugin (step) new version...
Checking for plugin (workflow-editor) new version...
New version (1.1.12) of plugin (workflow-editor) available
Run command to update plugin:
$ bitrise plugin update workflow-editor
1 Like
Yep, it was successful @coltonidle 
I just created an internal card to do a revision on the CLI runβs results, to make it easier to see whether it failed or was successful. Right now successful is marked only with the lack of βfailedβ message, as well as with βno red step results in the run summary at the bottom of the CLI logβ, but it definitely could be improved. Thanks for the feedback! 