Complex Github tagging from CircleCI
Thanks! I think I did have somewhat of a misconception there. Just to be clear, could I do some Bash within the config, like this? - run: command: | last_tag=$(git describe --tags | grep -o '^[^-]\+')...
View ArticleCan I set a parameter as part of the run?
In Circleci version 2.1 I would like to create a parameter, then set a value to the parameter during the run. Something like: parameters: my-param: type: string default: "" jobs: build: steps: -...
View ArticleiOS fastlane build fails with useModernBuildSystem=YES
I’ve got an XCode 12.2.1 project that fails to build using Fastlane on the tests target. It fails during the build when it’s meant to build the Image.xcassets or asset tags, my image is the following:...
View ArticleHow to set AWS_REGION with orbs?
I am trying to use orbs for the first time. I’m trying to use the circleci aws-ecr and aws-ecs to build a docker image, upload it to ECR then deploy it to ECS. I’ve reduced my config.yml to that ORB...
View ArticleDynamic Workflow Definition
Hello, We have a single android project from which we’re building 27 different apps. The backbone of these apps is more or less the same. Some features are different or enabled only on some of the...
View ArticleMonitoring execution times of a specific step in a build
I would like to be able to monitor and chart the execution time of a specific step in one of my builds. I have looked at the Insights tabs and it does not provide this level of data. Does anyone know...
View ArticleTest timings can't be found
We are also trying to figure out why we are getting No timing found for "tests/integration/reckonhosted/DemoTestSet1Test.php" No timing found for...
View ArticleInstall iOS 13.2 Simulator in Xcode 11.3 Image?
We’re as of yet unable to use the Xcode 11.3 image due to a known issue that prevents XCTest from automating webview text fields, hence breaking our UI test suite. This has been reported by others and...
View ArticleInstall iOS 13.2 Simulator in Xcode 11.3 Image?
The xcode-install gem is installed on the images for the system Ruby. You should be able to install 13.2 with the following: xcversion simulators --install='iOS 13.2' I’ve not tried this out, so you...
View ArticleInstall iOS 13.2 Simulator in Xcode 11.3 Image?
Aha - I had tried adding xcode-install to my project’s bundle and running that command via bundle exec but it asked for machine credentials to complete the install. I will try using the non-bundled...
View ArticleInstall iOS 13.2 Simulator in Xcode 11.3 Image?
marc: xcversion simulators --install=‘iOS 13.2’ Here is the result when I do that: static:~ distiller$ xcversion simulators --install='iOS 13.2' Installing iOS 13.2 Simulator for Xcode 11.3.0... 100...
View ArticleInstall iOS 13.2 Simulator in Xcode 11.3 Image?
Ok I’m wrong…it does throw up the “Please authenticate” and appears to hang…but it does eventually succeed with the install. I’ll move forward with that workaround and see if it helps unblock.
View ArticleRunning additional containers for Orb job
rose: there shouldn’t be any reason you can’t pass environment and its additional keys/values, along with your image name/tag, using the method I mentioned previously So if the environment variable is...
View ArticleRunning additional containers for Orb job
bcardiff: I would prefer to define a custom inline job extending the orb job with the pre-step and invoke multiple time the custom inline job. That can’t be done and I am forced to include the...
View ArticleRunning additional containers for Orb job
Yes I agree. We’ve exposed many commands, an executor, and a job that use the above with the configurable executor as proposed. That seems the best it can get without complicating things and is great,...
View ArticleAttempting to run
I’m attempting to think my way out of job dependency hell, and not having much luck so far. My desire seems simple: I want to have every commit to a branch run through my CircleCI development job. I...
View ArticleComplex Github tagging from CircleCI
A follow-up. While I think I got this figured out for Bash, we’d prefer to use Ruby instead. Try as I might, I can’t see how to invoke a Ruby script from the config. I imagine it’s something like...
View ArticleAttempting to run
Hi @WesleyDavid - I’m curious why the development job is ignoring master, if by your own requirements it should be run for master?
View ArticleAre GitHub r-w deploy keys secure for open source projects?
I have an open source project on GitHub and I want to commit to the “gh-pages” branch from the container. To do so I need (according to the CircleCI manual) to create a r-w deploy key and add the...
View ArticleTest timings can't be found
Alright, we actually found the issue from the JUnit report that Cucumber generated by default. As we can see from the doc here the XML as following: <?xml version="1.0" encoding="UTF-8"?>...
View Article