circleci

CircleCi emulator64-arm: command not found

穿精又带淫゛_ 提交于 2020-08-07 10:44:07
问题 I try to launch my instrumentation test in Circle Ci. I have this following code : test_ui: <<: *build_environment docker: - image: circleci/android:api-27 steps: - checkout - *sdk_license_agreements - run: name: Setup emulator command: sdkmanager "system-images;android-22;default;armeabi-v7a" && echo "no" | avdmanager create avd -n test -k "system-images;android-22;default;armeabi-v7a" - run: name: Launch emulator command: export LD_LIBRARY_PATH=${ANDROID_HOME}/emulator/lib64:${ANDROID_HOME}

What are CircleCi pipelines? Can they be used to trigger job with parameters?

和自甴很熟 提交于 2020-07-23 06:40:06
问题 Documentation is spread out and it's a bit hard grasp how to make use of the pipeline concept in circle ci language? Also what's the point of pipelines and pipeline variables? The following docs were useful but were far from enough for me to figure out how they actually work: https://circleci.com/docs/2.0/pipelines https://circleci.com/docs/2.0/build-processing (Enabling pipelines) https://circleci.com/docs/2.0/pipeline-variables/#conditional-workflows (Pipeline variables and conditional

What are CircleCi pipelines? Can they be used to trigger job with parameters?

最后都变了- 提交于 2020-07-23 06:38:21
问题 Documentation is spread out and it's a bit hard grasp how to make use of the pipeline concept in circle ci language? Also what's the point of pipelines and pipeline variables? The following docs were useful but were far from enough for me to figure out how they actually work: https://circleci.com/docs/2.0/pipelines https://circleci.com/docs/2.0/build-processing (Enabling pipelines) https://circleci.com/docs/2.0/pipeline-variables/#conditional-workflows (Pipeline variables and conditional

Nativescript 5.4.0 build fails with “couldn't find sbg-bindings.txt”

一个人想着一个人 提交于 2020-07-14 11:44:12
问题 Nativescript released 5.4.0 where hmr is enabled by default. After upgrade to 5.4.0, my nativescript cloud build as well as local build started breaking with following error message: Exception in thread "main" java.io.IOException: Couldn't find '/home/circleci/repo/platforms/android/build-tools/sbg-bindings.txt' bindings input file. Most probably there's an error in the JS Parser execution. You can run JS Parser with verbose logging by executing "node '/home/circleci/repo/platforms/android

Nativescript 5.4.0 build fails with “couldn't find sbg-bindings.txt”

∥☆過路亽.° 提交于 2020-07-14 11:43:50
问题 Nativescript released 5.4.0 where hmr is enabled by default. After upgrade to 5.4.0, my nativescript cloud build as well as local build started breaking with following error message: Exception in thread "main" java.io.IOException: Couldn't find '/home/circleci/repo/platforms/android/build-tools/sbg-bindings.txt' bindings input file. Most probably there's an error in the JS Parser execution. You can run JS Parser with verbose logging by executing "node '/home/circleci/repo/platforms/android

CircleCI build failed due to Google anonymous usage data question

前提是你 提交于 2020-07-08 11:43:43
问题 While CircleCI build, in the processes of executing sudo npm install -g @angular/cli Google asked to share anonymous data usage yes/no question. How can I avoid prompt of that question in CircleCI ? Image of docker is circleci/node:8 Command run: sudo npm install -g @angular/cli Error message: #!/bin/bash -eo pipefail sudo npm install -g @angular/cli /usr/local/bin/ng -> /usr/local/lib/node_modules/@angular/cli/bin/ng @angular/cli@8.0.1 postinstall /usr/local/lib/node_modules/@angular/cli

CircleCI build failed due to Google anonymous usage data question

自古美人都是妖i 提交于 2020-07-08 11:42:45
问题 While CircleCI build, in the processes of executing sudo npm install -g @angular/cli Google asked to share anonymous data usage yes/no question. How can I avoid prompt of that question in CircleCI ? Image of docker is circleci/node:8 Command run: sudo npm install -g @angular/cli Error message: #!/bin/bash -eo pipefail sudo npm install -g @angular/cli /usr/local/bin/ng -> /usr/local/lib/node_modules/@angular/cli/bin/ng @angular/cli@8.0.1 postinstall /usr/local/lib/node_modules/@angular/cli

Using Vagrant on cloud CI services

て烟熏妆下的殇ゞ 提交于 2020-05-25 11:25:25
问题 Are there any cloud CI services that allow Vagrant VMs to run using VirtualBox as a provider? Early investigation shows this seems not to be possible with Travis CI or Circle CI, although the vagrant-aws plugin allows for the use of AWS servers as a Vagrant provider. Is this correct? 回答1: That's right. There are still no CI services allowing to run Vagrant via LXC or Virtualbox (and that's sad). You can't do it under Travis. You can't under CodeShip You can't under CircleCI Don't know about

Invalid step structure

有些话、适合烂在心里 提交于 2020-02-05 06:15:48
问题 I believe my configuration is valid after reading the CircleCi workflow documentation but I am still getting the error below. What is wrong with my configuration? Here is my workflow configuration: workflows: version: 2 build_assemble_deploy: jobs: - build - assemble: requires: - build filters: branches: only: master - deploy: requires: - assemble filters: branches: only: master And here is the full error CircleCi gives me: Build-agent version 0.1.799-f865b43f (2018-10-11T12:48:06+0000)

Invalid step structure

我的梦境 提交于 2020-02-05 06:15:07
问题 I believe my configuration is valid after reading the CircleCi workflow documentation but I am still getting the error below. What is wrong with my configuration? Here is my workflow configuration: workflows: version: 2 build_assemble_deploy: jobs: - build - assemble: requires: - build filters: branches: only: master - deploy: requires: - assemble filters: branches: only: master And here is the full error CircleCi gives me: Build-agent version 0.1.799-f865b43f (2018-10-11T12:48:06+0000)