Hi
I have seeing in log that npm tool is required, so i have added it with nodeJs installation in my docker environment ENV NODEJS_VERSION=v10.16.3 \ PATH=/opt/node/current/bin:$PATH # I dislike adding a compiler to a production server RUN yum -y install make gcc gcc-c++ && yum -y clean all # Install NODE RUN mkdir /opt/node && \ cd /opt/node && \ curl -LSs https://nodejs.org/dist/${NODEJS_VERSION}/node-${NODEJS_VERSION}-linux-x64.tar.xz | tar xfJ - && \ ln -sf node-${NODEJS_VERSION}-linux-x64 current RUN npm -version Regards > Message du 08/09/19 21:02 > De : "Jay Sen" > A : [email protected], "Philippe Couas" > Copie à : > Objet : Re: tr: Re: EAGLE 5 not compile > > cool, glad u found the issue. do you want to describe your use-case ? THanks Jay > On Sun, Sep 8, 2019 at 9:33 AM Philippe Couas wrote: > > Hi > > It seems problem is missing npm installation > I have resolved compilation problem with warning > /tmp/eagle/eagle-assembly/target/eagle-0.5.1-SNAPSHOT-bin.tar.gz > > > > > > > Message du 08/09/19 14:38 > > De : "Philippe Couas" > > A : [email protected], [email protected], "pcouas" > > Copie à : > > Objet : tr: Re: EAGLE 5 not compile > > > > > > > > err.txt contains error message > > > > Regards > > > > > > > Message du 08/09/19 12:51 > > De : "Philippe Couas" > > A : "Jay Sen" , [email protected], "Philippe Couas" > > Copie à : > > Objet : Re: EAGLE 5 not compile > > > > > > > Hi > > > > > > This my dockerfile > > > > > > docker build -t icentos7-java8-maven3 . > > > docker run -i -t --name docker-java7-maven icentos7-java8-maven3 > > > git clone https://git-wip-us.apache.org/repos/asf/eagle.git > > > cd eagle > > > mvn clean package -DskipTests -Dcheckstyle.skip > > > > > > > > > > Message du 08/09/19 05:28 > > De : "Jay Sen" > > A : [email protected], "Philippe Couas" > > Copie à : > > Objet : Re: EAGLE 5 not compile > > > > Hi Philippe > > I just complied the branch-0.5 and it compiles fine, [INFO] ------------------------------------------------------------------------ > > [INFO] BUILD SUCCESS > > [INFO] > > ------------------------------------------------------------------------ > > [INFO] Total time: 07:19 min > > [INFO] Finished at: 2019-09-07T20:22:03-07:00 > > [INFO] > > ------------------------------------------------------------------------ > > > > What is your environment and can u also share the error info? > > Thanks Jay > > > > On Sat, Sep 7, 2019 at 9:53 AM Philippe Couas wrote: > > Hi > > > > > > > > Eagle 5 not compile > > > > It missing eagle.common.Version class > > > > And Maven dependencies are bad too ! > > > > > > > > Regards > > > > > > [ Dockerfile (2.5 Ko) ] > > [ err.txt (7.7 Ko) ]
