Pytest treating warning as exception
I’m running pytest with: python -m pytest tests/ -vv -rsx However, it is treating warnings as errors: _______________ ERROR collecting tests/test_synthesis_report.py ________________...
View ArticleNew Go Convenience Image Public Beta
@rose GENIUS! i was lazy to write my own install script. an orb is brilliant
View ArticleFeedback wanted: moving from v1.1 job triggering to v2 pipeline triggering
We started with CircleCI back in the 1.0 days. While we migrated all our yml to 2.0 we still have a number of apps that are job-based and use this API to trigger. Could there be any relief on the...
View ArticleStep reuse: commands vs jobs vs anchors?
That sounds like an ideal use case for a command, IMO @phalverson. As for YAML anchors—they should generally be superseded by reusable commands/jobs/executors, but since not all components of CircleCI...
View ArticleFeedback wanted: moving from v1.1 job triggering to v2 pipeline triggering
Do you have account manager? If so, best to go through them. If not, do you know how many projects you need to change?
View ArticleShare values to jobs with different executors
Hi @fernfernfern I saved value to a text file by running echo "SOME_VALUE" > workspace/MY_VALUE and then persist_to_workspace I think the problem is I save the value in node_executor and want to...
View ArticleShare values to jobs with different executors
Oh, I just found out it is my fault with wrong syntax It is working
View ArticleBrew link step failing on Python dependency
Even Travis CI is failing for me - https://travis-ci.org/ashishb/dotfiles So, this is not Circle CI specific - https://travis-ci.org/ashishb/dotfiles/jobs/634627308
View ArticleRun the second Job after the first one is complete
I managed to run the second Job sequentially (from another repository) after the first Job was completed. To do this, I used the API call. Here’s my code: version: 2 jobs: build: docker: - image:...
View ArticleSlow clone times from Github to CircleCI
We are also seeing this issue badly… will we get refunded credits for the abnormally slow transfer rates?
View ArticleDifference between Pipelines and Workflows?
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.
View ArticlePipeline triggering endpoint takes over 30 seconds to respond
When triggering a pipeline, the endpoint can sometimes take over 30 seconds to respond. Are there any known performance enhancements coming to this? AWS API Gateway has a max timeout of 29 seconds,...
View ArticlePipeline triggering endpoint takes over 30 seconds to respond
To be clear, you are using the v2 API or the 1.1 API? Is the config on this project very large? What you’re describing isn’t common, so I’m wondering if there’s something Interesting about your project.
View ArticlePipeline triggering endpoint takes over 30 seconds to respond
I am using the v2 api. The file contains 226 lines, 7244 characters and is roughly 7.08KB in size. Not sure which metric is most applicable for that question. When compared to other projects we have,...
View ArticleFeedback wanted: moving from v1.1 job triggering to v2 pipeline triggering
Yes we do and I’m going to email her as well. We have 6 apps (not necessarily projects/repos in the CircleCI sense) that are built around the...
View ArticleIs it possible to trigger a workflow with custom parameters via an API call?
Is it possible to parse through unique parameters with triggering a workflow via the api? If so, can someone point me in the right direction, if not, any other suggestions? In the example below, it’s...
View ArticleIs it possible to trigger a workflow with custom parameters via an API call?
Heya @gregk8288! It’s entirely possible to do this through the use of pipeline parameters in our v2 API preview. Our docs are available here...
View ArticleFeedback wanted: moving from v1.1 job triggering to v2 pipeline triggering
Thanks Brian, this is super-helpful detail. We have been experimenting with a stop-gap approach where all API v1.1 job triggers are re-routed through our pipelines machinery. If that works we will...
View ArticleFeedback wanted: moving from v1.1 job triggering to v2 pipeline triggering
Thanks Nathan. I appreciate the understanding. What’s got us is that we’ve built other business apps that trigger Circle jobs via the 1.1 API from other places (AWS, Slack, Salesforce). After thinking...
View ArticleAre docker layer caching volumes encrypted?
I would like to know if the docker layer caching volumes (which are EBS volumes, right?) are encrypted at rest. For example, if a base docker image intentionally contains credentials in order to store...
View Article