Using "requires" on a job not working as expected?
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.
View ArticleAWS EKS Orb: AWS IAM Authenticator install fails (missing or malformed URL)
As per the related GitHub issue, the release v0.5.2 of the AWS IAM Authenticator package has been republished, and now includes the executable assets. The workaround we initially suggested is no...
View ArticlePoetry not installed using standard way
If you end up here, the new convenience image now has poetry pre-installed using the recommended method! ~|⇒ docker run -it cimg/python:3.9 circleci@78dde45f7301:~/project$ poetry self update Updating...
View ArticleInsights Dashboard is here! Feedback wanted!
For a frontend to the insights API this is quite nice, but I’ve found the insights API lacking and have always had to go through one or two more API layers to get the information I wanted. Hopefully...
View ArticleHow to get all recent workflows from project?
Just realized I hadn’t responded earlier. Thanks for the pointers! I took a look and at the moment haven’t made any changes, but it’s good to know that there are existing options out there. I put some...
View ArticleInsights Dashboard is here! Feedback wanted!
Hi @simon-swanson, thanks for the feedback! We plan to add support for more granular time windows as well as Test insights (including flaky tests) in the coming weeks and months. We are also looking...
View ArticleAuthenticate with Docker to avoid impact of Nov. 1st rate limits
I had the same question and hope we can confirm this somehow soon. I tried using valid credentials and then invalid credentials and in both cases my build was successful and the logs appeared the same...
View ArticleAuthenticate with Docker to avoid impact of Nov. 1st rate limits
Thank you. I have other questions: is there a better way to provide the password credentials? I am not sure about providing the credentials and commit them to a repo which I have to share with other...
View ArticleHow do i connect google cloud sql with circle-ci?
Before performing deployment, i have run some test cases. Some of test cases required database connection. So how do i suppose to connect circle-ci with cloud sql in order to use database. I tried via...
View ArticleNuGet private registry authorization fails with "Access denied" error
An ugly workaround is to use the -StorePasswordInClearText flag when adding the source.
View ArticleDocker build fails with nonsensical EPERM: operation not permitted, copyfile
@d_marm Pinning the version of Node.js to 12.18.4 worked for me. Thank you!
View ArticleAuthenticate with Docker to avoid impact of Nov. 1st rate limits
Thanks for the reply Alican! I set up Docker authentication for my CircleCI jobs so I should be good now. I’m not super happy that Docker is now going to make data profiles on all of us based on the...
View ArticleAuthenticate with Docker to avoid impact of Nov. 1st rate limits
We decided to use jfrog to cache docker hub artifacts using jfrog’s remote and virtual repositories.
View ArticleConfig.yml error
I’m having a bit of an issue getting my config.yml to work. Here is my config.yml below: version: 2.1 executors: node-executor: docker: - image: circleci/node:10 jobs: deploy-dev: executor:...
View ArticleHow to include yaml in other repo?
Now, I’m migrating our projects from gitlab to Github. so, I’m creating circle-ci for the migrated service. I have one question. in the gitlab-ci, we can use ‘include’ to use the yaml file in the...
View ArticleDockerHub による2020/11からのコンテナイメージ Pull 回数制限のCircleCIへの影響
英語ですが、こちらのFAQを共有いたします。 CircleCI Support Center Docker Hub rate limiting FAQ Beginning November 1, 2020, Docker Hub will enable rate limits based on the originating IP address. Since CircleCI runs jobs...
View ArticleHow to extract user, branch, commit from a circle CI trigger?
Sorry for such a lazy question but I quickly wanted to know where to get these info from (or if they have to be configured) My aim is to send out slack notification with these information after a...
View ArticleDocker cimg missing fonts for AdoptOpenJDK and Ubuntu
We are migrating to use the new cimg/openjdk-11.0 docker image. We found that AdoptOpenJDK does not contain the correct setup for fonts, which is needed for various Apache POI operations (and no doubt...
View ArticleConfig.yml error
Hi @jameslevine! Welcome to the CircleCI community! The content of your config.yml shows that the configuration version key is indented. As it’s a top-level key, there shouldn’t be any indentation...
View ArticleHow to extract user, branch, commit from a circle CI trigger?
Hi @sudipbhandari126! You can get that information from the built-in environment variables. user > CIRCLE_USERNAME branch > CIRCLE_BRANCH commit > CIRCLE_SHA1 Also, I recommend using the...
View Article