Install golang 1.13 in the Windows default image
Are there any plans to upgrade the go version to 1.13 in the default windows executor? (currently it’s in 1.12).
View ArticleInstall golang 1.13 in the Windows default image
I don’t know the answer to whether this will be changed in the default image, but I would assume you could do a build-time upgrade for now.
View ArticleBrew link step failing on Python dependency
Hatko: Any updates on it? Are you looking for help on your own problem? If so, post the details - perhaps readers would need more information than what is in the original post.
View ArticleSlow clone times from Github to CircleCI
I have noticed for the past couple weeks that I have seen extremely slow clone times when running macOS-hosted builds, typically when running builds during working hours. A couple hundred KB/sec...
View ArticleStep reuse: commands vs jobs vs anchors?
If I have a set of steps I want to be able to reuse that accomplish a particular goal (e.g. build a deployment component), seems like I could either define them in a command or as a job (or a job that...
View ArticleSlow clone times from Github to CircleCI
We’re seeing this as well, using the standard checkout command, cloning from github is extremely slow (500 KBps), causing >30m checkout times.
View ArticleConnecting to a local port without exposing it
Here is the ouput of Redis without the &: #!/bin/bash -eo pipefail /redis/src/redis-server --port 7777 52:C 06 Jan 2020 23:08:34.078 # oO0OoO0OoO0Oo Redis is starting oO0OoO0OoO0Oo 52:C 06 Jan...
View ArticleCircleCi freezes completely (again)
@mrsbutterworth short-answer– mostly yes. Longer answer– here’s the plan: First we are moving all of our future backend processing to be Pipelines-processing in a manner that does not disrupt your...
View ArticleConnecting to a local port without exposing it
Alright, good sleuthing so far. Is there a verbose mode on the console so we can see more detail? benji: Is there some restriction on background processes of some sorts? No, not as far as I know....
View ArticleSlow clone times from Github to CircleCI
Just to see where the issue might be coming from, could you try pushing the code elsewhere (GitLab, Bitbucket) and then cloning from your CircleCI machine (e.g. in a post-build SSH session). This...
View ArticleCircleCi freezes completely (again)
@mrsbutterworth will that work for your use case? What comments or concerns does that leave you with?
View ArticleShare values to jobs with different executors
I have multiple jobs using different executors sequentially. I want to save value from a earlier job and reuse it in a later job I tried persist_to_workspace, but it seems not working with different...
View ArticleUnable to bypass codesign prompt on Catalyst
So I was working on a Catalyst app and trying to do automatic submission to AppStore. So far things works well when exporting archive for Direct Distribution. But when it come to exporting for...
View ArticleUnable to bypass codesign prompt on Catalyst
Looks like adding this line after installing cert will works with your own created keychain security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k circle circle-db
View ArticleConnecting to a local port without exposing it
Using this works: - run: command: /redis/src/redis-server --port 7777 > /tmp/redis.log 2>&1 background: true https://circleci.com/docs/2.0/configuration-reference/#background-commands Using...
View ArticleCache immutability, and using the cache from the last build
G-Rath: but yeah I wanted to show how much work it seemed to take to get it to click Totally agree. Thank you for your write up; it has been far more clarifying than the actual docs.
View ArticleUnable to run workflow with context: Could not find context
Hello! This is a known bug at the moment with piggiebacked orgs and our contexts page. We have a new contexts page coming soon that will resolve it, but I don’t have a timeline at the moment for the...
View ArticleHow can I get specific branch detail with api
You can use our new v2 Insights API to gather more information about your pipelines for a specific branch. This section of the docs has more info:...
View ArticleRun the second Job after the first one is complete
Can I ask why you have a separate repository for your tests?
View Article