Re: [Development] CI problem

2019-10-15 Thread Heikki Halmet
Hi,

CI is working again. We had some issues with database, but those are fixed now.

Thanks for your patience!


Br
Heikki

From: Heikki Halmet
Sent: tiistai 15. lokakuuta 2019 17.02
To: development@qt-project.org
Subject: CI problem

Hi,

We have problems in CI. Integrations don't get VM's for some reason. Hopefully 
we'll solve this out soon as possible.


Ystävällisin terveisin / Kind regards,

Heikki Halmet
Software Engineer | CI Lead
Release and Test Automation | CI Team
The Qt Company | Finland | Oulu


___
Development mailing list
Development@qt-project.org
https://lists.qt-project.org/listinfo/development


[Development] CI problem

2019-10-15 Thread Heikki Halmet
Hi,

We have problems in CI. Integrations don't get VM's for some reason. Hopefully 
we'll solve this out soon as possible.


Ystävällisin terveisin / Kind regards,

Heikki Halmet
Software Engineer | CI Lead
Release and Test Automation | CI Team
The Qt Company | Finland | Oulu


___
Development mailing list
Development@qt-project.org
https://lists.qt-project.org/listinfo/development


Re: [Development] CI problem with iOS

2015-03-24 Thread Tor Arne Vestbø
On 23/03/15 15:04, Simon Hausmann wrote:
 On Sunday 22. March 2015 23.19.15 Thiago Macieira wrote:
 Anyone?

 This is still happening.

 If we don't know how to fix this, I propose we make the iOS builds
 force-pass all tests.

 We haven't found the real bug yet, but we've found the change that revealed
 the change, and it's been reverted now:

   https://codereview.qt-project.org/109207

Still looking into the issue, but what seems to happen is a race 
condition in Xcode/xcodebuild that is triggered by us running make with 
-jN and ending up spawning multiple concurrent xcodebuilds.

Xcode seems to use global state to store the 'what is the destination of 
this build' flag, which in turn affects build variables like VALID_ARCHS 
and other build rules.

The change in question forced tests to be built for simulator, but some 
apps in the tests do not have CONFIG+=testcase, such as the qclipboard 
test helpers, and ended up being built for device. The result is that we 
run something like this in parallel:

  xcodebuild -sdk iphonesimulator [...]
  xcodebuild -sdk iphoneos [...]

And the second build will mess up the state of the first, making it 
believe that it's building with the simulator SDK, but targeting 
arm64/armv7.

There are ways to guide Xcode in this process, so we can work around the 
bug in xcodebuild, but in the meantime the revert makes sense to lessen 
the chance of the problem appearing in the CI.

tor arne
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] CI problem with iOS

2015-03-24 Thread Marc Mutz
On Monday 23 March 2015 15:04:39 Simon Hausmann wrote:
 On Sunday 22. March 2015 23.19.15 Thiago Macieira wrote:
  Anyone?
  
  This is still happening.
  
  If we don't know how to fix this, I propose we make the iOS builds
  force-pass all tests.
 
 We haven't found the real bug yet, but we've found the change that revealed
 the change, and it's been reverted now:
 
   https://codereview.qt-project.org/109207

It's hanging in INTEGRATING state for 20h now

-- 
Marc Mutz marc.m...@kdab.com | Senior Software Engineer
KDAB (Deutschland) GmbH  Co.KG, a KDAB Group Company
Tel: +49-30-521325470
KDAB - The Qt Experts
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] CI problem with iOS

2015-03-23 Thread Simon Hausmann
On Sunday 22. March 2015 23.19.15 Thiago Macieira wrote:
 Anyone?
 
 This is still happening.
 
 If we don't know how to fix this, I propose we make the iOS builds
 force-pass all tests.

We haven't found the real bug yet, but we've found the change that revealed 
the change, and it's been reverted now:

https://codereview.qt-project.org/109207


Simon
___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] CI problem with iOS

2015-03-23 Thread Lanin Alexander (BSOT/PJ-ES)
Hi,

I'm not familiar with the exact error message you're mentioning but the easiest 
way to get around No architectures to compile for is to set archs to the 
exact same as valid archs. You'll need i386 for Simulator.


Mit freundlichen Grüßen / Best regards

Alexander Lanin



-Ursprüngliche Nachricht-
Von: Thiago Macieira [mailto:thiago.macie...@intel.com] 
Gesendet: Montag, 23. März 2015 07:19
An: development@qt-project.org
Betreff: Re: [Development] CI problem with iOS

Anyone?

This is still happening.

If we don't know how to fix this, I propose we make the iOS builds force-pass 
all tests.

On Thursday 19 March 2015 13:43:43 Thiago Macieira wrote:
 This has been happening for a while. Someone who knows about iOS, please
 talk to the QA team to make sure this problem is solved.
 
 The CI has been reporting:
 
 Check dependencies
 No architectures to compile for (ARCHS=i386 x86_64, VALID_ARCHS=arm64 armv7
 armv7s).
 CodeSign error: entitlements are required for product type 'Application' in
 SDK 'Simulator - iOS 8.1'. Your Xcode installation may be damaged.
 
 ** BUILD FAILED **
 
 
 The following build commands failed:
   Check dependencies
 (1 failure)

-- 
Thiago Macieira - thiago.macieira (AT) intel.com
  Software Architect - Intel Open Source Technology Center


___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


Re: [Development] CI problem with iOS

2015-03-23 Thread Thiago Macieira
Anyone?

This is still happening.

If we don't know how to fix this, I propose we make the iOS builds force-pass 
all tests.

On Thursday 19 March 2015 13:43:43 Thiago Macieira wrote:
 This has been happening for a while. Someone who knows about iOS, please
 talk to the QA team to make sure this problem is solved.
 
 The CI has been reporting:
 
 Check dependencies
 No architectures to compile for (ARCHS=i386 x86_64, VALID_ARCHS=arm64 armv7
 armv7s).
 CodeSign error: entitlements are required for product type 'Application' in
 SDK 'Simulator - iOS 8.1'. Your Xcode installation may be damaged.
 
 ** BUILD FAILED **
 
 
 The following build commands failed:
   Check dependencies
 (1 failure)

-- 
Thiago Macieira - thiago.macieira (AT) intel.com
  Software Architect - Intel Open Source Technology Center

___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development


[Development] CI problem with iOS

2015-03-18 Thread Thiago Macieira
This has been happening for a while. Someone who knows about iOS, please talk 
to the QA team to make sure this problem is solved.

The CI has been reporting:

Check dependencies
No architectures to compile for (ARCHS=i386 x86_64, VALID_ARCHS=arm64 armv7 
armv7s).
CodeSign error: entitlements are required for product type 'Application' in 
SDK 'Simulator - iOS 8.1'. Your Xcode installation may be damaged.

** BUILD FAILED **


The following build commands failed:
Check dependencies
(1 failure)

-- 
Thiago Macieira - thiago.macieira (AT) intel.com
  Software Architect - Intel Open Source Technology Center

___
Development mailing list
Development@qt-project.org
http://lists.qt-project.org/mailman/listinfo/development