Show absolute datetimes instead of "X days ago" with hover
Yup. The old UI has the same problem
View Article"failed to create a vm: instance not ready yet: unassigned"
Same here. Both this and machine executors fail. All builds trying to build Docker images fail to this From old discussion (around 26.3.) I see references to capacity issues when machine executors...
View Article"failed to create a vm: instance not ready yet: unassigned"
Yep, it looks constant now for any build I run. Very annoying. For me even damaging
View Article"failed to create a vm: instance not ready yet: unassigned"
It was a major outage of CircleCI.
View ArticleNo queue info in new UI?
Seems like when a build gets queued behind other builds, it’s not possible to see the queue in the new UI, which is annoying, partly because I’d like to know which other projects are consuming the...
View ArticleHow to always run a sequential, final job (e.g. Slack notification)?
I’m searching for a solution to run a final job always, i.e. no matter if the previous jobs in a sequence failed. Basically a when: attribute of steps, but as a workflow’s jobs setting: workflows:...
View ArticleNew UI: Import Environment Variables Feature is Gone
Is my understanding of Environment and Context wrong? The way I understood it was that the Environment was for nonspecific environments that do not have secrets. And do not need special permissions to...
View ArticleNo queue info in new UI?
This is pretty annoying because with the old UI, you could view all projects in one view, so it was possible to see which builds are running in front of the queue. With the new UI, you can only view...
View ArticleJob "Not Running", no error, just hanging
I think I may have found a bug, not sure. I tried to rerun my job with SSH to debug something, but both times it just said it was “Scheduled” and did not move forwards. So I added something to get...
View ArticleConditions for steps in a job
markrity: But if it failed I want it mark job as success There is no way to mark a job on success if it fails in any meaningful way. However, you can use the when modifier to run specific jobs on...
View ArticleIs it possible to cache images for docker-compose in CircleCI?
This isn’t possible in any meaningful way with one exception. If you are building an image as a part of docker-compose up, you can use Docker Layer Caching to speed up the build portion. If you’re not...
View ArticleConditionally setting parameters
I think the easiest way to achieve this is to split this into its own job and use the standard filters. Is this not an option for your use case?
View ArticleCaching go on Mac OS build environment?
daluu: ~/go - ~/go/bin Could you try using the absolute path (i.e. /Users/distiller/go/bin). I can’t seem to find it in the docs, but I can remember that there are some parts of the config that do not...
View ArticleConfig.yml help with Docker and Docker Compose
Depending on your specific project requirements (such as needing to mount directories) I would suggest either using the remote docker environment or running docker-compose on a virtual machine. You...
View ArticleJob "Not Running", no error, just hanging
It’s working now. I haven’t done anything to make it work execpt step away from the computer for a while
View ArticleNew UI - Branches filtering
Have two suggestions: It could be nice if we can search for a specific branch It could be nice as well if I can have my branches only when I select “My pipelines” So we don’t have to miss so much the...
View ArticleIs it possible to cache images for docker-compose in CircleCI?
Hey @levlaz, Thank you for your response. What you explained about the caching does make sense. I’m not building any images as part of brining a docker compose stack up, but using services such as...
View ArticleUsing `exit` in bash login shells always fails the step
In the below configuration, we simply test running “exit 0” under 2 shells. The default linux shell and one with the login option added “-l”. version: 2.1 workflows: test_exit: jobs: - test_non_login...
View ArticleWebpage view of a single pipeline?
Is there a webpage I can use to view a single pipeline? I see there is: A webpage to view all pipelines: https://app.circleci.com/pipelines/:project_slug A webpage to view each of the workflows within...
View ArticleConditionally setting parameters
Thanks for the response @levlaz! It is an option, I was just hoping to avoid it due to the large amount of duplication that will occur. I’m using the cypress/run job in my workflow. In order to have a...
View Article