Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jakartaee-spec-project-leads] Running through CTS pipeline job setup

I’m going through setting up the pipeline jobs described on this page:
https://wiki.eclipse.org/TCK:Build_From_Jakarta_EE_TCK_Repo_And_Run


I have a test2 job there that creates a GF implementation with the replaced jakarta.management.j2ee-api.jar coming from the Management-API_EE4J_8_build job

I have a test2_jte job that creates a ts.jte that is a copy of https://wiki.eclipse.org/TCK:ts_jte_pipeline that only updates env.deliverabledir=jakartaee” 

I have a test3 job that is a copy of https://wiki.eclipse.org/TCK:TCK_run_pipeline that updates only these settings:

    // Job that created the API artifact
    def GF_BUILD_JOB = "jenkins://./test2"
    def TS_JTE_BUILD_JOB = "jenkins://./test2_jte"
    def API_JAR_NAME="jakarta.management.j2ee-api.jar"
    
    //TCK properties
    env.deliverabledir="jakartaee"


The Management-API_EE4J_8_build, test2 and test2_jte jobs run successfully, but the test3 tck run job is failing when it gets to the “Configure TCK” stage with the final console log output being:

copy.cts.ext.jars:
     [copy] Copying 1 file to /domains/domain1/lib/ext
Attempt to copy /home/jenkins/workspace/test3/jakartaeetck/lib/cts.jar to /domains/domain1/lib/ext/cts.jar using NIO Channels failed due to 'failed to create the parent directory for /domains/domain1/lib/ext/cts.jar'.  Falling back to streams.

BUILD FAILED
/home/jenkins/workspace/test3/jakartaeetck/bin/build.xml:520: The following error occurred while executing this line:
/home/jenkins/workspace/test3/jakartaeetck/bin/xml/impl/glassfish/javaee_vi.xml:296: Failed to copy /home/jenkins/workspace/test3/jakartaeetck/lib/cts.jar to /domains/domain1/lib/ext/cts.jar due to java.io.FileNotFoundException /domains/domain1/lib/ext/cts.jar (No such file or directory)


Is there a problem with the ts.jte configuration?

I don’t seem to have access to any of the projects that have a CTS run pipeline setup. Is the https://wiki.eclipse.org/TCK:TCK_run_pipeline example based on jsonb usable as a baseline for running the CTS?



Back to the top