Re: [Interest] New CI for Qt (and OpenSource Qt/QtC 3rd parties)

2015-12-16 Thread Edward Sutton

On Dec 16, 2015, at 11:18 AM, rpzrpz...@gmail.com 
wrote:



On 12/16/2015 10:38 AM, Edward Sutton wrote:
On Dec 16, 2015, at 8:49 AM, rpzrpz...@gmail.com 
wrote:

I use Jenkins now for Android, iOS, OS X, Linux, & Windows builds. Jenkins + 
Docker sounds interesting. I assume one advantage is it is light weight 
compared to having to store a bunch of large VM images? Can Docker be used to 
deploy OS X Xcode and Windows Visual Studio build slaves? Or is the Docker 
engine always running a Linux system of some sort regardless if the engine host 
is Windows? -Ed

Edward:

How are you verifying Android and IOS builds?

Using simulators or actual devices?
Manual testing using actual hardware.

An automated-smoke test would be nice. I do not know how I would do this.

-Ed


Yes, real device testing in the CI would be great.

For android, you would have to automate GDB to uninstall and reinstall apk 
files.

Then have code to support the simulation of user input and sensor data.

It would be likely impossible to verify the GUI side, but models and business 
logic could be verified.

And high volume testing could be executed.

IOS is a different animal.  Likely have to jailbreak a device just to get into 
it for automated program removal and testing.

I have run into issues when I skipped manual build verification.  I have had 
issues with both iOS TestFlight and Android Beta testing builds that did not 
run or install properly,

Even automated smoke-test build verification using iOS simulator and Android 
simulator would be beneficial.

ADB and Android might work.

Not sure how to communicate with an iOS simulator.  I think the simulator's 
file system can read by the OS X host.

-Ed

This email and any files transmitted with it from The Charles Machine Works, 
Inc. are confidential and intended solely for the use of the individual or 
entity to which they are addressed. If you have received this email in error 
please notify the sender. Our company accepts no liability for the contents of 
this email, or for the consequences of any actions taken on the basis of the 
information provided, unless that information is subsequently confirmed in 
writing. Please note that any views or opinions presented in this email are 
solely those of the author and do not necessarily represent those of the 
company. Finally, the recipient should check this email and any attachments for 
the presence of viruses. The company accepts no liability for any damage caused 
by any virus transmitted by this email.
___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


Re: [Interest] file:// is harshing my zen

2015-12-16 Thread Giuseppe D'Angelo
On Wed, Dec 16, 2015 at 8:23 PM, Jason H  wrote:
> It means that I would not have to have an instance of a QUrl class. Currently 
> I'd have to do:
> QUrl url(string);
> return url.toLocalFile();
>
> Why can't I just do QUrl::toLocalFile(string) I shouldn't need an instance to 
> strip file:// if it exists.

Or QUrl(foo).toLocalFile()...

>
>> Caveat: I don't use QML. If that's giving you QString's that really
>> should be QUrl's, I'd be complaining about that...
>
> It does.

Can you elaborate more about your scenario? Do you have a property of
type QString (string in QML) and you're assigning a value of type QUrl
(url) to it?

Cheers,
-- 
Giuseppe D'Angelo
___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


[Interest] How to deploy qtwebengine_resources_100p.pak on Windows

2015-12-16 Thread Glenn Ramsey
Hi,

I am attempting to create a PyInstaller build for a PyQt application that uses
QtWebEngine on Windows. I have this mostly working but scroll bars in the
QtWebEngine window are red. This is apparently caused by the lack of the files
qtwebengine_resources_100p.pak and qtwebengine_resources_200p.pak.

As far as I can tell from this patch
https://codereview.qt-project.org/#/c/121432/ these should be deployed in the
application directory. I have put them there but they are not being found. The
error message (below) indicates that they are being looked for in the directory
that was passed as -prefix when configuring the qt build.

[1217/110543:ERROR:resource_bundle.cc(691)] Failed to load C:\Users\glenn\Docume
nts\rp\thirdparty\qt551\qtbase\qtwebengine_resources_200p.pak
Some features may not be available.

In this application the main executable, QtWebEngineProcess.exe, and its support
files (icudtl.dat, qtwebengine_resources.pak, etc) are in the same directory.

If not in the application directory then where should these files
qtwebengine_resources_100p.pak and qtwebengine_resources_200p.pak be deployed?

Glenn
___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


[Interest] qmake.exe -query gets stuck

2015-12-16 Thread qt
Hello there,

[System Windows7 64bit]

I just tried to install Qt(32bit) for a less knowledgable person and
utterly failed. Installation went successfull. At the end the installer
offered to start QtCreator for us. We said sure and it did. However we
never saw Qt Creator. The task manager showed it running, along with the
child "qmake.exe -query". This qmake.exe turns out to be impossible to kill.

I also tried calling it manually and sure enough it got stuck forever.
Unkillable.

Any advice? We tried this with Qt 5.5.0 and 5.5.1. Same result.

--Marenz
___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


Re: [Interest] file:// is harshing my zen

2015-12-16 Thread Thiago Macieira
On Wednesday 16 December 2015 17:33:54 Jason H wrote:
> Why isn't there a *static* QUrl::toLocalFile()?

Why would you need one?

QUrl("file:///tmp/Mambo %235.mp3?seek=60").toLocalFile() 
==
QString("/tmp/Mambo #5.mp3")

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

___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


Re: [Interest] file:// is harshing my zen

2015-12-16 Thread Thiago Macieira
On Wednesday 16 December 2015 12:27:28 Matthew Woehlke wrote:
> Well, you mentioned toLocalFile, so I assume you already know that "trim
> it" should actually use that. Also:
> 
>   if (uri.scheme() == "file")

Better:
if (uri.isLocalFile())

QUrl caches internally whether the scheme() is "file", so there's no string 
comparison.

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

___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


[Interest] [Qt3D] Logic aspect hangs on exit

2015-12-16 Thread Nye
Hello,
It seems for some reason that adding a logic aspect to the aspect engine
causes the application to "hang" on exit. My guess is that for some reason
the shutdown sequence is not executing properly and the threads in the pool
are left in waiting. Is there currently a workaround for that (i.e. can I
manually shutdown the aspect engine)? I'm creating the aspect engine on the
stack, maybe this is an issue?
I'm developing on Debian stretch with 4.2 kernel, if that helps. Qt3D is
compiled from the most recent source available in the git repository for
the 5.6 branch.

Kind regards.
___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


Re: [Interest] New CI for Qt (and OpenSource Qt/QtC 3rd parties)

2015-12-16 Thread rpzrpz...@gmail.com

On 12/16/2015 1:34 AM, Fathi Boudra wrote:

On Tue, Dec 15, 2015 at 4:27 PM, Bo Thorsen  wrote:

Den 11-12-2015 kl. 09:16 skrev Sarajärvi Tony:

 > I cannot find any reference to "Coin CI".  Is this an open
source or commercial tool?  A Qt internal tool?

Internal tool created from nothing. Sources aren't public as of yet anyway


I'd like to see that done. I'm also interested in hearing about why you
chose to do this, as there are so many CI systems available already.

My guess is that this is because you want a system that can create virtual
machines on the fly? I'd be interested in getting such a system set up for
our own build server. So you could have your first contributor soon :)

btw, you can achieve the same with Jenkins and Docker. Jenkins has a
docker plugin, which can spawn ephemeral or persistent docker build
slaves (very similar to EC2 slave if you're familiar with it). Puppet
isn't required in this setup as you can use Dockerfiles to maintain
the virtual machines. Another interesting project that you might find
useful is Jenkins Job Builder from OpenStack infra folks. It allows to
write the Jenkins jobs in yaml (human readable) and store them as
plain text in your favorite SCM like git.

Cheers.


Bo Thorsen,
Director, Viking Software.

--
Viking Software
Qt and C++ developers for hire
http://www.vikingsoft.eu

___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest

___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest

What are you doing to run OSX / Xcode with docker images?

md



___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


[Interest] QFileDialog Qt5

2015-12-16 Thread Duane
I'm subclassing a QFileDialog.  I need to get a pointer to the filename 
box.  I was doing this with findChild()  with Qt4 but with 
Qt5 this returns null.  Any suggestions?


___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


Re: [Interest] QFileDialog Qt5

2015-12-16 Thread Thiago Macieira
On Wednesday 16 December 2015 08:10:44 Duane wrote:
> I'm subclassing a QFileDialog.  I need to get a pointer to the filename
> box.  I was doing this with findChild()  with Qt4 but with
> Qt5 this returns null.  Any suggestions?

XY problem. Why do you need to get the pointer to the line edit? What are you 
trying to do?
-- 
Thiago Macieira - thiago.macieira (AT) intel.com
  Software Architect - Intel Open Source Technology Center

___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


Re: [Interest] QFileDialog Qt5

2015-12-16 Thread Duane

On 16/12/2015 8:14 AM, André Somers wrote:



Op 16/12/2015 om 14:10 schreef Duane:

I'm subclassing a QFileDialog.  I need to get a pointer to the
filename box.  I was doing this with findChild()  with Qt4
but with Qt5 this returns null.  Any suggestions?

Are you sure you are not getting a native file dialog? If so, then
obviously there are no child widgets...

André



I don't think so.

___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


Re: [Interest] New CI for Qt (and OpenSource Qt/QtC 3rd parties)

2015-12-16 Thread Edward Sutton

> On Dec 16, 2015, at 1:34 AM, Fathi Boudra  wrote:
>
> On Tue, Dec 15, 2015 at 4:27 PM, Bo Thorsen  wrote:
>> Den 11-12-2015 kl. 09:16 skrev Sarajärvi Tony:
>>>
 I cannot find any reference to "Coin CI".  Is this an open
>>> source or commercial tool?  A Qt internal tool?
>>>
>>> Internal tool created from nothing. Sources aren't public as of yet anyway
>>
>>
>> I'd like to see that done. I'm also interested in hearing about why you
>> chose to do this, as there are so many CI systems available already.
>>
>> My guess is that this is because you want a system that can create virtual
>> machines on the fly? I'd be interested in getting such a system set up for
>> our own build server. So you could have your first contributor soon :)
>
> btw, you can achieve the same with Jenkins and Docker. Jenkins has a
> docker plugin, which can spawn ephemeral or persistent docker build
> slaves (very similar to EC2 slave if you're familiar with it). Puppet
> isn't required in this setup as you can use Dockerfiles to maintain
> the virtual machines. Another interesting project that you might find
> useful is Jenkins Job Builder from OpenStack infra folks. It allows to
> write the Jenkins jobs in yaml (human readable) and store them as
> plain text in your favorite SCM like git.
>

I use Jenkins now for Android, iOS, OS X, Linux, & Windows builds.  Jenkins + 
Docker sounds interesting. I assume one advantage is it is light weight 
compared to having to store a bunch of large VM images?

Can Docker be used to deploy OS X Xcode and Windows Visual Studio build slaves? 
 Or is the Docker engine always running a Linux system of some sort regardless 
if the engine host is Windows?

-Ed


> Cheers.
>
>> Bo Thorsen,
>> Director, Viking Software.
>>
>> --
>> Viking Software
>> Qt and C++ developers for hire
>> http://www.vikingsoft.eu
>>
>> ___
>> Interest mailing list
>> Interest@qt-project.org
>> http://lists.qt-project.org/mailman/listinfo/interest
> ___
> Interest mailing list
> Interest@qt-project.org
> http://lists.qt-project.org/mailman/listinfo/interest

This email and any files transmitted with it from The Charles Machine Works, 
Inc. are confidential and intended solely for the use of the individual or 
entity to which they are addressed. If you have received this email in error 
please notify the sender. Our company accepts no liability for the contents of 
this email, or for the consequences of any actions taken on the basis of the 
information provided, unless that information is subsequently confirmed in 
writing. Please note that any views or opinions presented in this email are 
solely those of the author and do not necessarily represent those of the 
company. Finally, the recipient should check this email and any attachments for 
the presence of viruses. The company accepts no liability for any damage caused 
by any virus transmitted by this email.
___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


Re: [Interest] New CI for Qt (and OpenSource Qt/QtC 3rd parties)

2015-12-16 Thread Fathi Boudra
On Wed, Dec 16, 2015 at 4:49 PM, rpzrpz...@gmail.com
 wrote:
> I use Jenkins now for Android, iOS, OS X, Linux, & Windows builds. Jenkins +
> Docker sounds interesting. I assume one advantage is it is light weight
> compared to having to store a bunch of large VM images? Can Docker be used
> to deploy OS X Xcode and Windows Visual Studio build slaves? Or is the
> Docker engine always running a Linux system of some sort regardless if the
> engine host is Windows? -Ed

OS X is currently not supported with docker. In this case, I fallback
to bare metal slaves (requirements are JDK 7 and SSH).

There's good progress on Windows side but I haven't tested myself:
https://msdn.microsoft.com/en-us/virtualization/windowscontainers/quick_start/manage_docker

> Edward:
>
> How are you verifying Android and IOS builds?
>
> Using simulators or actual devices?
>
> md
>
> ___
> Interest mailing list
> Interest@qt-project.org
> http://lists.qt-project.org/mailman/listinfo/interest
___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


Re: [Interest] QFileDialog Qt5

2015-12-16 Thread André Somers



Op 16/12/2015 om 15:02 schreef Duane:

On 16/12/2015 8:53 AM, Thiago Macieira wrote:

On Wednesday 16 December 2015 08:10:44 Duane wrote:

I'm subclassing a QFileDialog.  I need to get a pointer to the filename
box.  I was doing this with findChild() with Qt4 but with
Qt5 this returns null.  Any suggestions?


XY problem. Why do you need to get the pointer to the line edit? What 
are you

trying to do?



Not sure what you mean by XY problem.

http://meta.stackexchange.com/questions/66377/what-is-the-xy-problem

André

___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


Re: [Interest] QFileDialog Qt5

2015-12-16 Thread Duane

On 16/12/2015 9:24 AM, André Somers wrote:



Op 16/12/2015 om 15:02 schreef Duane:

On 16/12/2015 8:53 AM, Thiago Macieira wrote:

On Wednesday 16 December 2015 08:10:44 Duane wrote:

I'm subclassing a QFileDialog.  I need to get a pointer to the filename
box.  I was doing this with findChild() with Qt4 but with
Qt5 this returns null.  Any suggestions?


XY problem. Why do you need to get the pointer to the line edit? What
are you
trying to do?



Not sure what you mean by XY problem.

http://meta.stackexchange.com/questions/66377/what-is-the-xy-problem

André



:-)

So my question should have been how can I get the filename that the user 
enters in the filedialog.






___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


Re: [Interest] QFileDialog Qt5

2015-12-16 Thread Duane

On 16/12/2015 8:53 AM, Thiago Macieira wrote:

On Wednesday 16 December 2015 08:10:44 Duane wrote:

I'm subclassing a QFileDialog.  I need to get a pointer to the filename
box.  I was doing this with findChild()  with Qt4 but with
Qt5 this returns null.  Any suggestions?


XY problem. Why do you need to get the pointer to the line edit? What are you
trying to do?



Not sure what you mean by XY problem.

We're trying to do something like a "save as" where depending on the 
setup the user can enter a filename with the directory path.  We block 
the context menu that allows creating new files etc.


Is there a way to get the user's entry when the file doesn't exist and 
the user clicks the ok button?




___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


Re: [Interest] New CI for Qt (and OpenSource Qt/QtC 3rd parties)

2015-12-16 Thread rpzrpz...@gmail.com
I use Jenkins now for Android, iOS, OS X, Linux, & Windows builds. 
Jenkins + Docker sounds interesting. I assume one advantage is it is 
light weight compared to having to store a bunch of large VM images? Can 
Docker be used to deploy OS X Xcode and Windows Visual Studio build 
slaves? Or is the Docker engine always running a Linux system of some 
sort regardless if the engine host is Windows? -Ed


Edward:

How are you verifying Android and IOS builds?

Using simulators or actual devices?

md
___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


Re: [Interest] QFileDialog Qt5

2015-12-16 Thread Jan Dasselaar

On 16-12-2015 16:16, Duane wrote:

On 16/12/2015 9:24 AM, André Somers wrote:



Op 16/12/2015 om 15:02 schreef Duane:

On 16/12/2015 8:53 AM, Thiago Macieira wrote:

On Wednesday 16 December 2015 08:10:44 Duane wrote:
I'm subclassing a QFileDialog.  I need to get a pointer to the 
filename

box.  I was doing this with findChild() with Qt4 but with
Qt5 this returns null.  Any suggestions?


XY problem. Why do you need to get the pointer to the line edit? What
are you
trying to do?



Not sure what you mean by XY problem.

http://meta.stackexchange.com/questions/66377/what-is-the-xy-problem

André



:-)

So my question should have been how can I get the filename that the 
user enters in the filedialog.






___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


You can use the selectedFiles() function icm with filemode AnyFile.
The full path including the entered file name will be returned.

Jan
___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


Re: [Interest] QFileDialog Qt5

2015-12-16 Thread Duane

On 16/12/2015 10:33 AM, Jan Dasselaar wrote:

On 16-12-2015 16:16, Duane wrote:

On 16/12/2015 9:24 AM, André Somers wrote:



Op 16/12/2015 om 15:02 schreef Duane:

On 16/12/2015 8:53 AM, Thiago Macieira wrote:

On Wednesday 16 December 2015 08:10:44 Duane wrote:

I'm subclassing a QFileDialog.  I need to get a pointer to the
filename
box.  I was doing this with findChild() with Qt4 but with
Qt5 this returns null.  Any suggestions?


XY problem. Why do you need to get the pointer to the line edit? What
are you
trying to do?



Not sure what you mean by XY problem.

http://meta.stackexchange.com/questions/66377/what-is-the-xy-problem

André



:-)

So my question should have been how can I get the filename that the
user enters in the filedialog.





___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


You can use the selectedFiles() function icm with filemode AnyFile.
The full path including the entered file name will be returned.




Yes, this seems to work.  Thanks.


___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


Re: [Interest] QFileDialog Qt5

2015-12-16 Thread Giuseppe D'Angelo

Il 16/12/2015 14:10, Duane ha scritto:

I'm subclassing a QFileDialog.  I need to get a pointer to the filename
box.  I was doing this with findChild()  with Qt4 but with
Qt5 this returns null.  Any suggestions?


Where are you doing that findChild? A non-native QFileDialog is lazily 
populated. Typically you need to wait until a show event gets delivered 
and handled by it to be sure you'll have the widgets created.


Random notes:

1) As many others have told you, this may be symptomatic of bad design...

2) That's an API abuse, hence totally unsupported and can break again at 
any time.


HTH,
--
Giuseppe D'Angelo | giuseppe.dang...@kdab.com | Software Engineer
KDAB (UK) Ltd., a KDAB Group company | Tel: UK +44-1625-809908
KDAB - The Qt Experts



smime.p7s
Description: Firma crittografica S/MIME
___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


Re: [Interest] QFileDialog Qt5

2015-12-16 Thread André Somers



Op 16/12/2015 om 14:10 schreef Duane:
I'm subclassing a QFileDialog.  I need to get a pointer to the 
filename box.  I was doing this with findChild()  with Qt4 
but with Qt5 this returns null.  Any suggestions?
Are you sure you are not getting a native file dialog? If so, then 
obviously there are no child widgets...


André

___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


[Interest] file:// is harshing my zen

2015-12-16 Thread Jason H
I continually run into situations in QML where I'm being given a Url. Normally 
these are file://... When I take my C++ api, expose it to QML and pass these 
values from QML to the C++ api, things don't work, and as a result I have to 
add if (filename.startsWith("file://")) {..trim it...} everywhere. This is 
harshing my Qt zen. Am I just not groking something simple? Why cant QFile see 
"file://" and handle it? Why isn't there a *static* QUrl::toLocalFile()? I 
realize that when you use things like an image provider, that the protocol 
matters. But it would be really cool if QFile and other classes could just take 
a URL that protocol and run it through appropriately, so I can QFile 
f("imageprovider://some/file"); f.open(QIODevice::ReadOnly); f.read()...

Usually things in Qt are pretty zen. So I suspect I'm missing something 
obvious. Or am I just head of the curve for once?
___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


Re: [Interest] file:// is harshing my zen

2015-12-16 Thread Gianluca
Hello Jason H,
I agree with you. I got the same problem you got a lot of times.
There is a clearly incongruence and came out when you try to pass thing between 
Qt C++ to/from QML.

I really hope that Qt developers fix all these issues of passing URL around all 
Qt C++ classes and QML items.

Ciao,
Gianluca.


Il giorno 16/dic/2015, alle ore 16:33, Jason H  ha scritto:

> I continually run into situations in QML where I'm being given a Url. 
> Normally these are file://... When I take my C++ api, expose it to QML and 
> pass these values from QML to the C++ api, things don't work, and as a result 
> I have to add if (filename.startsWith("file://")) {..trim it...} everywhere. 
> This is harshing my Qt zen. Am I just not groking something simple? Why cant 
> QFile see "file://" and handle it? Why isn't there a *static* 
> QUrl::toLocalFile()? I realize that when you use things like an image 
> provider, that the protocol matters. But it would be really cool if QFile and 
> other classes could just take a URL that protocol and run it through 
> appropriately, so I can QFile f("imageprovider://some/file"); 
> f.open(QIODevice::ReadOnly); f.read()...
> 
> Usually things in Qt are pretty zen. So I suspect I'm missing something 
> obvious. Or am I just head of the curve for once?
> ___
> Interest mailing list
> Interest@qt-project.org
> http://lists.qt-project.org/mailman/listinfo/interest

___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest


Re: [Interest] New CI for Qt (and OpenSource Qt/QtC 3rd parties)

2015-12-16 Thread Edward Sutton

> On Dec 16, 2015, at 8:49 AM, rpzrpz...@gmail.com wrote:
>
> I use Jenkins now for Android, iOS, OS X, Linux, & Windows builds. Jenkins + 
> Docker sounds interesting. I assume one advantage is it is light weight 
> compared to having to store a bunch of large VM images? Can Docker be used to 
> deploy OS X Xcode and Windows Visual Studio build slaves? Or is the Docker 
> engine always running a Linux system of some sort regardless if the engine 
> host is Windows? -Ed
>
> Edward:
>
> How are you verifying Android and IOS builds?
>
> Using simulators or actual devices?

Manual testing using actual hardware.

An automated-smoke test would be nice. I do not know how I would do this.

-Ed

>
> md
> ___
> Interest mailing list
> Interest@qt-project.org
> http://lists.qt-project.org/mailman/listinfo/interest

This email and any files transmitted with it from The Charles Machine Works, 
Inc. are confidential and intended solely for the use of the individual or 
entity to which they are addressed. If you have received this email in error 
please notify the sender. Our company accepts no liability for the contents of 
this email, or for the consequences of any actions taken on the basis of the 
information provided, unless that information is subsequently confirmed in 
writing. Please note that any views or opinions presented in this email are 
solely those of the author and do not necessarily represent those of the 
company. Finally, the recipient should check this email and any attachments for 
the presence of viruses. The company accepts no liability for any damage caused 
by any virus transmitted by this email.
___
Interest mailing list
Interest@qt-project.org
http://lists.qt-project.org/mailman/listinfo/interest