circleci

Deploy to Azure from CircleCI

拈花ヽ惹草 提交于 2021-01-28 09:05:07
问题 I'm using CircleCI for the first time and having trouble publishing to Azure. The docs don't have an example for Azure, they have an example for AWS and a note for Azure saying "To deploy to Azure, use a similar job to the above example that uses an appropriate command." If anybody has an example YAML file that would be great, if not a nudge in the right direction would be handy. So far I think I've worked out the following. I need a config that will install the Azure CLI I need to put my

Deploy to Azure from CircleCI

核能气质少年 提交于 2021-01-28 08:43:02
问题 I'm using CircleCI for the first time and having trouble publishing to Azure. The docs don't have an example for Azure, they have an example for AWS and a note for Azure saying "To deploy to Azure, use a similar job to the above example that uses an appropriate command." If anybody has an example YAML file that would be great, if not a nudge in the right direction would be handy. So far I think I've worked out the following. I need a config that will install the Azure CLI I need to put my

Failure in kubernetes working deployment files , after cluster upgradation from 1.11 to 1.14.6, being deployed via circleCI

纵然是瞬间 提交于 2021-01-06 13:15:46
问题 I am using circleCI for deployments, with AKS version 1.11 , the pipelines were working fine but after the AKS upgradation to 1.14.6, failure is seen while applying the deployment and service object files. I deployed manually at kubernetes cluster, there didn't appear any error but while deploying through circleCI, I am getting following kind of errors while using version 2 of circleCI error: SchemaError(io.k8s.api.extensions.v1beta1.DeploymentRollback): invalid object doesn't have additional

Failure in kubernetes working deployment files , after cluster upgradation from 1.11 to 1.14.6, being deployed via circleCI

落花浮王杯 提交于 2021-01-06 13:13:24
问题 I am using circleCI for deployments, with AKS version 1.11 , the pipelines were working fine but after the AKS upgradation to 1.14.6, failure is seen while applying the deployment and service object files. I deployed manually at kubernetes cluster, there didn't appear any error but while deploying through circleCI, I am getting following kind of errors while using version 2 of circleCI error: SchemaError(io.k8s.api.extensions.v1beta1.DeploymentRollback): invalid object doesn't have additional

Failure in kubernetes working deployment files , after cluster upgradation from 1.11 to 1.14.6, being deployed via circleCI

≯℡__Kan透↙ 提交于 2021-01-06 13:06:32
问题 I am using circleCI for deployments, with AKS version 1.11 , the pipelines were working fine but after the AKS upgradation to 1.14.6, failure is seen while applying the deployment and service object files. I deployed manually at kubernetes cluster, there didn't appear any error but while deploying through circleCI, I am getting following kind of errors while using version 2 of circleCI error: SchemaError(io.k8s.api.extensions.v1beta1.DeploymentRollback): invalid object doesn't have additional

Android Firebase app distribution - Service credentials file does not exist. Please check the service credentials path and try again

若如初见. 提交于 2021-01-02 05:57:04
问题 I'm trying to migrate from Crashlytics Beta to Firebase App Distribution. CircleCi in the Middle. The build failes in CircleCi with the following error: What went wrong: Execution failed for task ':FiverrApp:appDistributionUploadRelease'. Service credentials file does not exist. Please check the service credentials path and try again Here is how i'm configuring serviceCredentialsFile variable In my build.gradle: release { buildConfigField "boolean", "FORCE_LOGS", "true"

Android Firebase app distribution - Service credentials file does not exist. Please check the service credentials path and try again

主宰稳场 提交于 2021-01-02 05:55:58
问题 I'm trying to migrate from Crashlytics Beta to Firebase App Distribution. CircleCi in the Middle. The build failes in CircleCi with the following error: What went wrong: Execution failed for task ':FiverrApp:appDistributionUploadRelease'. Service credentials file does not exist. Please check the service credentials path and try again Here is how i'm configuring serviceCredentialsFile variable In my build.gradle: release { buildConfigField "boolean", "FORCE_LOGS", "true"

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}