Falcon build failing

2017-03-26 Thread Harbs
I’m having trouble building Falcon. It looks like it’s failing because a text in FlexJSTestBase.java is failing. It’s looking for a file flex-asjs/frameworks/as/basic-manifest.xml which does not exist. I’m not sure how the build was passing previously… Harbs

Re: Falcon build failing

2017-03-26 Thread Christofer Dutz
Probably the Ant build … correct? The Maven build shouldn’t care about that. Chris Am 26.03.17, 22:19 schrieb "Harbs" : I’m having trouble building Falcon. It looks like it’s failing because a text in FlexJSTestBase.java is failing. It’s looking for a file flex-asjs/frameworks/

Re: Falcon build failing

2017-03-26 Thread Harbs
Yup. I’m still waiting for you to show me what I’m missing about Maven in Miami… ;-) > On Mar 26, 2017, at 11:40 PM, Christofer Dutz > wrote: > > Probably the Ant build … correct? > > The Maven build shouldn’t care about that. > > Chris > > > > > Am 26.03.17, 22:19 schrieb "Harbs" : > >

Re: Falcon build failing

2017-03-26 Thread Alex Harui
On 3/26/17, 1:19 PM, "Harbs" wrote: >I’m having trouble building Falcon. > >It looks like it’s failing because a text in FlexJSTestBase.java is >failing. It’s looking for a file >flex-asjs/frameworks/as/basic-manifest.xml which does not exist. That output has been there for months. It isn't t

Re: Falcon build failing

2017-03-28 Thread Harbs
It was Josh’s tests that were tripping me up. The build fails after doing a wipe-all. I’ve been having other problems with Falcon, and the latest logging seems to shed some light on what’s wrong: [java] Dependencies calculated for 'org.apache.flex.states.SetProperty' [java] org.apache

Re: Falcon build failing

2017-03-28 Thread Harbs
It’s really weird: I can’t see anything in my app which relies on Uint8Array and Uint32Array, and I’m still getting this error. :-( > On Mar 28, 2017, at 11:21 AM, Harbs wrote: > > It was Josh’s tests that were tripping me up. The build fails after doing a > wipe-all. > > I’ve been having ot

Re: Falcon build failing

2017-03-28 Thread Greg Dove
Harbs, I saw that error a short while ago, but I am not sure it is related to the native classes. Dependencies calculated for 'org.apache.flex.states.SetProperty' org.apache.flex.states.SetProperty depends on org.apache.flex.core.IDocument was all the appeared immediately before I saw it. If you

Re: Falcon build failing

2017-03-28 Thread Christofer Dutz
Just an edjucated guess from my side … There is a cycle in the dependencies. Maven has problems with this and simply fails to start. Ant doesn’t do this sort of check. If you do a wipe all, eventually the prerequisites of your test get wiped and therefore you can’t run the test so you would hav

Re: Falcon build failing

2017-03-28 Thread Harbs
Yes. That’s what happened, and I got past that problem. My problem now is not related to the tests. I’m having two problems: 1. org.apache.flex.core.Application is not being added as a dependency to the main app. 2. Any app which uses BinaryData fails to compile. This app: https://paste.apache.o

Re: Falcon build failing

2017-03-28 Thread Josh Tynjala
I have moved my new tests into the Ant integration tests, so they should no longer block you. - Josh On Tue, Mar 28, 2017 at 1:21 AM, Harbs wrote: > It was Josh’s tests that were tripping me up. The build fails after doing > a wipe-all. > > I’ve been having other problems with Falcon, and the l

Re: Falcon build failing

2017-03-28 Thread Harbs
Thanks, but I’m having bigger problems. Hopefully Alex will look into the other issues… > On Mar 28, 2017, at 4:55 PM, Josh Tynjala wrote: > > I have moved my new tests into the Ant integration tests, so they should no > longer block you. > > - Josh > > On Tue, Mar 28, 2017 at 1:21 AM, Harbs

Re: Falcon build failing

2017-03-28 Thread Alex Harui
Hmm. Looks like I broke something. Even DataBindingExample didn't run. I just pushed a change to fix DataBindingExample and hopefully all other apps. Please pull flex-falcon and try again. Sorry about the delay, -Alex On 3/28/17, 7:13 AM, "Harbs" wrote: >Thanks, but I’m having bigger proble

Re: Falcon build failing

2017-03-28 Thread Harbs
Looking at you change, I doubt it’ll fix my problem because I WAS using remove-circulars, but I’m trying anyway… > On Mar 28, 2017, at 6:50 PM, Alex Harui wrote: > > Hmm. Looks like I broke something. Even DataBindingExample didn't run. > I just pushed a change to fix DataBindingExample and

Re: Falcon build failing

2017-03-28 Thread Alex Harui
There are lots of issues being dealt with so I don't know which one you are referring to. I'm still working on the exception in getListOfFiles. -Alex On 3/28/17, 9:42 AM, "Harbs" wrote: >Looking at you change, I doubt it’ll fix my problem because I WAS using >remove-circulars, but I’m trying a

Re: Falcon build failing

2017-03-28 Thread Alex Harui
OK. I think I've fixed the getListOfFiles problem. The Maven examples build seems to be turning on remove-circulars where the Ant build doesn't. That might need to be fixed up, but actually it helps test the code paths in the dependency management. -Alex On 3/28/17, 9:54 AM, "Alex Harui" wrot

Re: Falcon build failing

2017-03-28 Thread Harbs
Progress! It looks like the only problem I now have is the missing dependency on org.apache.flex.core.Application > On Mar 28, 2017, at 8:00 PM, Alex Harui wrote: > > OK. I think I've fixed the getListOfFiles problem. > > The Maven examples build seems to be turning on remove-circulars where

Re: Falcon build failing

2017-03-28 Thread piotrz
Hi, I think I have same problem but with TourJS and Maven build. [1] :) [1] https://paste.apache.org/JWPJ Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/Falcon-build-failing-tp60790p60861.html Sent

Re: Falcon build failing

2017-03-28 Thread Harbs
I’m getting this with a different project: No GoogDep for NaN I guess NaN needs to be added too? > On Mar 28, 2017, at 8:49 PM, Harbs wrote: > > Progress! > > It looks like the only problem I now have is the missing dependency on > org.apache.flex.core.Application > >> On Mar 28, 2017, at 8:

Re: Falcon build failing

2017-03-28 Thread Alex Harui
Yep, but I just added it about 10 minutes ago. -Alex On 3/28/17, 9:50 PM, "Harbs" wrote: >I’m getting this with a different project: >No GoogDep for NaN > >I guess NaN needs to be added too? > >> On Mar 28, 2017, at 8:49 PM, Harbs wrote: >> >> Progress! >> >> It looks like the only problem I

Re: Falcon build failing

2017-03-28 Thread Harbs
OK. Why is this happening now? > On Mar 29, 2017, at 7:52 AM, Alex Harui wrote: > > Yep, but I just added it about 10 minutes ago. > > -Alex > > On 3/28/17, 9:50 PM, "Harbs" wrote: > >> I’m getting this with a different project: >> No GoogDep for NaN >> >> I guess NaN needs to be added too?

Re: Falcon build failing

2017-03-28 Thread Alex Harui
On 3/28/17, 9:58 PM, "Harbs" wrote: >OK. Why is this happening now? In order to handle the reordering of dependencies, I needed to collect types used in static initializers. The code is throwing a big net over all sorts of identifiers. I suppose I need to make it smarter, not sure. But it c

Re: Falcon build failing

2017-03-28 Thread Harbs
Can I assume that any types in external swcs will not have this issue? > On Mar 29, 2017, at 8:11 AM, Alex Harui wrote: > > > > On 3/28/17, 9:58 PM, "Harbs" wrote: > >> OK. Why is this happening now? > > In order to handle the reordering of dependencies, I needed to collect > types used in

Re: Falcon build failing

2017-03-28 Thread Alex Harui
On 3/28/17, 10:40 PM, "Harbs" wrote: >Can I assume that any types in external swcs will not have this issue? Don't know. I don't think I've had to add anything like that so far. If you are running into that, then I need to adjust the logic. -Alex > >> On Mar 29, 2017, at 8:11 AM, Alex Haru

Re: Falcon build failing

2017-03-28 Thread Harbs
I’ll let you know if I do. Have you been able to reproduce the problem with the missing org.apache.flex.core.Application dependency? > On Mar 29, 2017, at 8:48 AM, Alex Harui wrote: > > > > On 3/28/17, 10:40 PM, "Harbs" wrote: > >> Can I assume that any types in external swcs will not have

Re: Falcon build failing

2017-03-28 Thread Alex Harui
On 3/28/17, 11:01 PM, "Harbs" wrote: >I’ll let you know if I do. > >Have you been able to reproduce the problem with the missing >org.apache.flex.core.Application dependency? No. I haven't hit that one. Earlier I listed things to check: Is the right SWC there? Does the SWC have the right c

Re: Falcon build failing

2017-03-28 Thread piotrz
Alex, Try to build by Maven TourJS - you should reproduce it. Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/Falcon-build-failing-tp60790p60883.html Sent from the Apache Flex Development mailing

Re: Falcon build failing

2017-03-28 Thread Alex Harui
I cloned flex-tourjs, checked out develop branch. Ran "mvn clean install". Build was successful. Did you verify that you are no longer getting errors in your frameworks Maven build and that the SWCs are built correctly? -Alex On 3/28/17, 11:08 PM, "piotrz" wrote: >Alex, > >Try to build by M

Re: Falcon build failing

2017-03-28 Thread piotrz
I'll give a shot later today! Maybe it's gone. Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/Falcon-build-failing-tp60790p60886.html Sent from the Apache Flex Development mailing list

Re: Falcon build failing

2017-03-29 Thread Harbs
Yes. Once I added the dependency manually, the app works as expected. I am now in NY and I can test your latest changes. I will do so and report whether I’m still getting the error. Harbs > On Mar 29, 2017, at 2:09 AM, Alex Harui wrote: > > > > On 3/28/17, 11:01 PM, "Harbs" wrote: > >> I’

Re: Falcon build failing

2017-03-29 Thread Alex Harui
What did you add that fixed it? -Alex On 3/29/17, 1:47 PM, "Harbs" wrote: >Yes. Once I added the dependency manually, the app works as expected. > >I am now in NY and I can test your latest changes. I will do so and >report whether I’m still getting the error. > >Harbs > >> On Mar 29, 2017, at

Re: Falcon build failing

2017-03-29 Thread Harbs
In index.html, I replaced this: goog.addDependency('../../../test_project.js', ['test_project'], ['org.apache.flex.core.IBeadModel', 'org.apache.flex.events.ValueChangeEvent', 'org.apache.flex.core.IFlexJSElement', 'org.apache.flex.html.beads.layouts.BasicLayout', 'org.apache.flex.utils.MXMLDat

Re: Falcon build failing

2017-03-29 Thread Harbs
I pulled in your latest changes. The NaN error is fixed, but I’m still having the problem with the missing Application dependency. Here’s a really simple project which has the problem for me including my configuration and the erroneous output. https://www.dropbox.com/s/eig8348o4kevpcq/test_proje

Re: Falcon build failing

2017-03-30 Thread Alex Harui
I pushed some changes that might fix that. Let me know. FlexJSStore still isn't running with -remove-circulars so I'm using that as my test case. -Alex On 3/29/17, 2:06 PM, "Harbs" wrote: >I pulled in your latest changes. The NaN error is fixed, but I’m still >having the problem with the miss

Re: Falcon build failing

2017-03-30 Thread Harbs
Now something else seems to be broken. The test_project I linked to earlier now gets no js files from the SDK other than Application.js and ApplicationBase.js. The compiler errs on Could not find file for class: org.apache.flex.core.UIHTMLElementWrapper Sorry… ;-) Harbs > On Mar 30, 2017, at

Re: Falcon build failing

2017-03-30 Thread piotrz
Alex, Your last commit had to break something. On jenkins and locally I'm getting following error [1] [1] https://paste.apache.org/MoHw Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/Falcon-

Re: Falcon build failing

2017-04-02 Thread Alex Harui
Well, I just pushed more changes so FlexJSStore compiles and loads without errors, but it doesn't look right yet. I'll be digging into that shortly. Thanks, -Alex On 3/30/17, 12:18 PM, "Alex Harui" wrote: >I pushed some changes that might fix that. Let me know. FlexJSStore >still isn't runni

Re: Falcon build failing

2017-04-19 Thread Harbs
I just got this one: No GoogDep for RegExp > On Mar 29, 2017, at 12:52 AM, Alex Harui wrote: > > Yep, but I just added it about 10 minutes ago. > > -Alex > > On 3/28/17, 9:50 PM, "Harbs" wrote: > >> I’m getting this with a different project: >> No GoogDep for NaN >> >> I guess NaN needs to

Re: Falcon build failing

2017-04-19 Thread Harbs
FWIW, I tried adding RegExp("RegExp”), to NativeUtils.NativeJSType, but for some reason it did not help. > On Apr 19, 2017, at 5:05 PM, Harbs wrote: > > I just got this one: > No GoogDep for RegExp > >> On Mar 29, 2017, at 12:52 AM, Alex Harui wrote: >> >> Yep, but I just added it about 10 m

Re: Falcon build failing

2017-04-20 Thread Harbs
This issue has me stalled. If anyone could help with this, it would be greatly appreciated. > On Apr 19, 2017, at 6:27 PM, Harbs wrote: > > FWIW, I tried adding RegExp("RegExp”), to NativeUtils.NativeJSType, but for > some reason it did not help. > >> On Apr 19, 2017, at 5:05 PM, Harbs wrote

Re: Falcon build failing

2017-04-20 Thread Christofer Dutz
Even if there is currently an issue not making all parts of the build chain run automatically … the Maven build is currently fully operational (as far as I can tell) Chris Am 20.04.17, 12:30 schrieb "Harbs" : This issue has me stalled. If anyone could help with this, it would be greatly

Re: Falcon build failing

2017-04-20 Thread Harbs
Right. But I need the TLF build to work… ;-) FWIW, I’m having trouble coming up with a test case which shows the problem. > On Apr 20, 2017, at 8:53 AM, Christofer Dutz > wrote: > > Even if there is currently an issue not making all parts of the build chain > run automatically … the Maven bu

Re: Falcon build failing

2017-04-20 Thread Alex Harui
Should I be able to reproduce by building the branch? Get Outlook for Android<https://aka.ms/ghei36> From: Harbs Sent: Thursday, April 20, 2017 6:21:56 AM To: dev@flex.apache.org Subject: Re: Falcon build failing Right. But I need the TLF build t

Re: Falcon build failing

2017-04-20 Thread Harbs
ps://aka.ms/ghei36> > > > > From: Harbs > Sent: Thursday, April 20, 2017 6:21:56 AM > To: dev@flex.apache.org > Subject: Re: Falcon build failing > > Right. But I need the TLF build to work… ;-) > > FWIW, I’m having trouble coming up with a test

Re: Falcon build failing

2017-04-20 Thread Harbs
ui wrote: >> >> Should I be able to reproduce by building the branch? >> >> Get Outlook for Android<https://aka.ms/ghei36> >> >> >> >> From: Harbs >> Sent: Thursday, April 20, 2017 6:21:56 AM >

Re: Falcon build failing

2017-04-20 Thread Alex Harui
gt;>1b5a7b34438794aed2c178decee1%7C0%7C0%7C636282947035930968&sdata=ykrDo05QM >>%2FE3G4aj45PuuOpSeOtdE4VwRQj2%2BeLX7Uk%3D&reserved=0> >> >> >> ________ >> From: Harbs >> Sent: Thursday, April 20, 2017 6:21:56 AM >> To: dev@flex.apach

Re: Falcon build failing

2017-04-20 Thread Harbs
rotection.outlook.com/?url=https%3A%2F%2F >>> aka.ms%2Fghei36&data=02%7C01%7C%7C6196b71086814d9bf10d08d487f819ea%7Cfa7b >>> 1b5a7b34438794aed2c178decee1%7C0%7C0%7C636282947035930968&sdata=ykrDo05QM >>> %2FE3G4aj45PuuOpSeOtdE4VwRQj2%2BeLX7Uk%3D&reserved=0> >&g

Re: Falcon build failing

2017-04-20 Thread Alex Harui
t;> >>>>aka.ms%2Fghei36&data=02%7C01%7C%7C6196b71086814d9bf10d08d487f819ea%7Cfa >>>>7b >>>> >>>>1b5a7b34438794aed2c178decee1%7C0%7C0%7C636282947035930968&sdata=ykrDo05 >>>>QM >>>> %2FE3G4aj45PuuOpSeOtdE4VwRQj2%2BeLX

Re: Falcon build failing

2017-04-20 Thread Harbs
the branch? >>>>> >>>>> Get Outlook for >>>>> >>>>> Android<https://na01.safelinks.protection.outlook.com/?url=https%3A%2F% >>>>> 2F >>>>> >>>>> aka.ms%2Fghei36&data=02%7C01%7C%7C6196b71086814d9bf10d08d487f819ea%7Cfa >>>

Re: Falcon build failing

2017-04-20 Thread Alex Harui
t; >>>>>> Should I be able to reproduce by building the branch? >>>>>> >>>>>> Get Outlook for >>>>>> >>>>>> >>>>>>Android<https://na01.safelinks.protection.outlook.com/?url=https%3A%2 >

Re: Falcon build failing

2017-04-20 Thread Harbs
gt;> >>>>>> I have not been able to figure out how to reproduce the problem yet >>>>>> in >>>>>> test case. >>>>>> >>>>>>> On Apr 20, 2017, at 9:38 AM, Alex Harui wrote: >>>>>>> &

Re: Falcon build failing

2017-04-20 Thread Alex Harui
On 4/20/17, 7:44 PM, "Harbs" wrote: >https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fpaste.apa >che.org%2FElpk&data=02%7C01%7C%7C163cde5e1733430a17ff08d488605310%7Cfa7b1b >5a7b34438794aed2c178decee1%7C0%7C0%7C636283394673664681&sdata=yjTVit%2FtW8 >5rsXtx%2FRJZODRK15PM1GrpZNUf5C

Re: Falcon build failing

2017-04-20 Thread Harbs
THANK YOU!!! That did it. Phew! I’m going to push my change to NativeUtils as well. > On Apr 20, 2017, at 11:16 PM, Alex Harui wrote: > > > > On 4/20/17, 7:44 PM, "Harbs" wrote: > >> https://na01.safelinks.protection.outlook.com/?url=https%3A%2F%2Fpaste.apa >> che.org%2FElpk&data=02%7C01%7

Re: Falcon build failing

2017-04-21 Thread Tom Chiverton
(aside) Your client knows there are top level domains with more than 4 characters ? And that neither local parts or domain names are limited to ASCII any more ? Tom On 20/04/17 17:50, Harbs wrote: private static const emailRegExp:RegExp = /^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$/i;