circleci-2.0

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 API behaving differently from github commit trigger?

試著忘記壹切 提交于 2019-12-24 22:04:55
问题 I'm running the cypress-example-kitchen sink app on CircleCI. This is my yaml config script: version: 2.1 orbs: cypress: cypress-io/cypress@1.0.1 workflows: build: jobs: - cypress/install: build: 'npm run build' - cypress/run: requires: - cypress/install start: 'npm start' This kicks off and passes just fine when I make a commit to my fork of the repo above. However, when I try to execute a CircleCI build programmatically, using curl -X POST https://circleci.com/api/v1.1/project/github

agent key RSA SHA256: … returned incorrect signature type

老子叫甜甜 提交于 2019-12-24 09:59:48
问题 I'm trying to use CircleCI on a Go project on GitHub with the default template for Go projects. For reference, here's what the default .circleci/config.yml looks like : version: 2 jobs: build: docker: - image: circleci/golang:1.12.7-buster working_directory: /go/src/github.com/Permaweb/Host steps: - checkout - run: go get -t -u -v ./... - run: go test -v ./... When the job runs, I get an error that's totally unrelated to the code itself. agent key RSA SHA256:L1iUIhjfKejEONe0TFU3TaWkNwE2O0xWF

Simple CircleCI 2.0 configuration fails for global NPM package installation

北慕城南 提交于 2019-12-23 01:09:49
问题 I have a Dockerfile that works fine: FROM node:10 RUN npm set unsafe-perm true RUN npm install -g '@oresoftware/r2g@0.0.132' but the same CircleCI config.yml file that mirrors the above Dockerfile does not work: { "version": 2, "jobs": { "build": { "docker": [ { "image": "circleci/node:10" } ], "steps": [ { "run": "npm set unsafe-perm true" }, { "run": "npm install -g --loglevel=warn '@oresoftware/r2g@0.0.132'" } ] } } } I get the following error on CircleCI using the above config.yml file: #

Simple CircleCI 2.0 configuration fails for global NPM package installation

我怕爱的太早我们不能终老 提交于 2019-12-23 01:08:09
问题 I have a Dockerfile that works fine: FROM node:10 RUN npm set unsafe-perm true RUN npm install -g '@oresoftware/r2g@0.0.132' but the same CircleCI config.yml file that mirrors the above Dockerfile does not work: { "version": 2, "jobs": { "build": { "docker": [ { "image": "circleci/node:10" } ], "steps": [ { "run": "npm set unsafe-perm true" }, { "run": "npm install -g --loglevel=warn '@oresoftware/r2g@0.0.132'" } ] } } } I get the following error on CircleCI using the above config.yml file: #

Use firefox for Selenium in CircleCI 2.0

房东的猫 提交于 2019-12-11 17:30:52
问题 In my CircleCI config.yml file I have the following: docker: - image: circleci/ruby:2.5.3-browsers-legacy In the CircleCI docs it says that by attaching -browsers-legacy to the language it will include Chrome, Firefox, Java 8 and PhantomJS And I also tried adding to the config.yml: - image: selenium/standalone-firefox:3.141.59 But I am still getting the error: Unable to find Mozilla geckodriver. Please download the server from https://github.com/mozilla/geckodriver/releases and place it

How to resolve $TERM not set on gradlew ./assembleRelease on CIrcleCI?

跟風遠走 提交于 2019-12-11 03:14:33
问题 I'm building a workflow on circleci 2.0 and so far jobs are running until it gets to android job. At the build step ./gradlew assembleRelease it fails stating that an ENV VAR is not set: Unzipping /home/circleci/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv/gradle-2.14.1-all.zip to /home/circleci/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv Set executable permissions for: /home/circleci/.gradle/wrapper/dists/gradle-2.14.1-all/8bnwg5hd3w55iofp58khbp6yv

Chromedriver Devtools port number error

会有一股神秘感。 提交于 2019-12-08 18:26:12
问题 I'm getting the following error while trying to run tests using capybara, selenium and chromedriver-helper. The tests run fine locally on a mac using the same version of chromedriver. I've tried setting the remote debugging port explicitly in my spec_helper, but apparently this is ignored as chromedriver uses a random remote debugging port. Selenium::WebDriver::Error::UnknownError: unknown error: Devtools port number file contents <37329> were in an unexpected format (Driver info:

TestCafe, CircleCI 2.0 & SauceLabs — can't get this combination to work

无人久伴 提交于 2019-12-07 22:53:31
问题 So -- I can, from my laptop do the following: testcafe "saucelabs:Chrome@70.0:Windows 10" tests/settings/users.js This will, connect to SauceLabs, to launch the test (or multiple tests, works either way), to hit back against our development server. (IP's have been whitelisted, it all works). I can also, of course, login to sauce labs, open a "live testing" browser and connect to this environment/login etc. Thus, the "SauceLabs =-> My environment" is fine. If I try to run a build on circleci