Questions tagged [xcode-server]

Xcode Server is the name for the Xcode service previously in OS X Server, but as of Xcode 9, integrated into Xcode itself. This is Apple's continuous integration product for iOS and OS X development.

If you have questions specific to Bots in Xcode Server, use tag instead.

189 questions
0
votes
1 answer

Xcode 12, Mac OS 10.15, Xcode server pre-integration scripts for install cocoapods

I'm new to Xcode server CI, and this is what my pre-integrate script looks like: #!/bin/sh #make sure the encoding is correct export LANG=en_US.UTF-8 # fix the path so Ruby can find it's binaries export PATH=/usr/local/bin:$PATH echo "PATH:…
Ran Bi
  • 251
  • 1
  • 2
  • 8
0
votes
1 answer

Xcode server bot: pre Scripts error Trigger Error: Trigger exited with non-zero status 1

I wanna setup a Xcode server for archive my project, but i get a tigger issues that tigger error Tigger exited with non-zero status 1. That is my scripts: #!/bin/sh #make sure the encoding is correct export LANG=en_US.UTF-8 # fix the path so Ruby…
cerrian
  • 3
  • 1
0
votes
0 answers

Should test configurations show up twice on test results when running on a xcode server bot?

so I've set up an Xcode server for my integration tests. I am using test plans and have set up my bot to run a specific plan. So this works as expected, fine. However, the plan has only one configuration, yet when I run the integration on my bot the…
fmortens
  • 73
  • 1
  • 9
0
votes
1 answer

I have added Pods in .gitignore and trying to setup CI/CD with Xcode Bots. Unable to install pods through pre integration script in bot configuration

I have added following as pre integration script in Xcode bot to install pods in gitignore pod install The script returns following message after integration pod: command not found
0
votes
1 answer

Xcode Sever Bot Automate Git Pull

I have a Xcode server instance with a bot that runs a few operations. I would like to add git pull. I have tried a few basic solutions that have failed. Looking for suggestions if this is possible. If so is there a script example, if not what would…
NicholasByDesign
  • 781
  • 1
  • 11
  • 33
0
votes
0 answers

MacOS UI Tests Destination on Xcode9 server?

I have reasonable good experiences with Xcode9 server, developing for the Mac. It seems to work, even my unit-test suite is running. However, I struggle with UI tests. My test run out of the IDE, but not in the server, giving me the message: No…
Wizard of Kneup
  • 1,863
  • 1
  • 18
  • 35
0
votes
0 answers

Xcode bot error: Unable to find a destination

Recently updated to Xcode 9.3 and created a new Xcode Server bot. When trying to run the bot I'm getting an error: xcodebuild: error: Unable to find a destination matching the provided destination specifier: {…
user7684436
  • 697
  • 14
  • 39
0
votes
1 answer

Xcode Server bot build error

Trying to create a bot and getting the following error: Build Service Error: Configured scheme ("App Name") could not be found, it may have been renamed or removed after the bot was created The develop branch has the project configured with the…
user7684436
  • 697
  • 14
  • 39
0
votes
0 answers

Xcode bots for internationalization

I'm currently trying to create bots to test my code in Xcode server, and I would like to test my app in several languages and regions, but I can't find a more convenient way to do this than creating one bot per language and region. Is there a way…
Ericlm
  • 117
  • 1
  • 13
0
votes
1 answer

Xcode Server Gym fails after MacOS High Sierra upgrade

Hi I have a post integration script that calls fastlane. After upgrading the Xcode Server machine to MacOS High Sierra, I'm getting this Trigger Issues: Assertion: Trigger exited with non-zero status 15. Other Issues: Running task was…
Ted
  • 22,696
  • 11
  • 95
  • 109
0
votes
1 answer

Xcode server - TestSummaries.plist

we are trying to get TestSummaries.plist. Previously, it was inside xcodebuild_result.bundle.zip as describe in the blog Now in Xcode 9, I couldn't find it. Thanks in advance!
Ted
  • 22,696
  • 11
  • 95
  • 109
0
votes
2 answers

Xcode Server iOS Trigger issues error 35

I'm using Xcode 9.0.1 we increased the maximum number of processes until the next restart sudo launchctl limit maxproc 2000 2500 I am having this issue while running integrations in Xcode Server. Assertion: Exception trying to execute trigger: …
Ted
  • 22,696
  • 11
  • 95
  • 109
0
votes
2 answers

Yellow warning triangle in Xcode 9's Create Bot.. window

I'm trying to set up continuous integration (CI) in Xcode 9 with it's new built-in Xcode Server functionality. (MacBook Pro, macOS High Sierra) I've been following various tutorials, such as Tutorial: Continuous Integration with Xcode 9 and…
leanne
  • 7,940
  • 48
  • 77
0
votes
1 answer

How to get Xcode server Code coverage api JSON response

When i try to hit Xcode server code coverage API by passing integration ID, instead of JSON response it is downloading a .bz2 file directly. I want to show the file wise coverage report in my custom dashboard using this API. Is there any way i can…
Vidhya Sri
  • 1,773
  • 1
  • 17
  • 46
0
votes
1 answer

How to work with Xcode server in Xcode 9? Do we need to have Xcode 9 open always?

I was using Xcode server app for setting up CI-CD in my project till now. I came to know that from Xcode 9, there is no need of server.app and we can setup xcode server in Xcode 9 IDE itself. I couldn't test this now since i have my previous…
Vidhya Sri
  • 1,773
  • 1
  • 17
  • 46