Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Qa release #24

Open
wants to merge 19 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
42 changes: 42 additions & 0 deletions assets/IS/Jenkinsfile.win
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
/*
* Copyright © 2010 - 2013 Apama Ltd.
* Copyright © 2013 - 2018 Software AG, Darmstadt, Germany and/or its licensors
*
* SPDX-License-Identifier: Apache-2.0
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/

pipeline {
agent any

stages {
stage('Build'){
steps {
bat "${env.SAG_HOME}/common/lib/ant/bin/ant -DSAGHome=${env.SAG_HOME} -DSAG_CI_HOME=${env.SAG_CD_HOME_QA} -DprojectName=${env.JOB_NAME} build"
}
}
stage('Deploy') {
steps {
bat "${env.SAG_HOME}/common/lib/ant/bin/ant -DSAGHome=${env.SAG_HOME} -DSAG_CI_HOME=${env.SAG_CD_HOME_QA} -DprojectName=${env.JOB_NAME} deploy"
}
}
stage('Test') {
steps {
bat "${env.SAG_HOME}/common/lib/ant/bin/ant -DSAGHome=${env.SAG_HOME} -DSAG_CI_HOME=${env.SAG_CD_HOME_QA} -DprojectName=${env.JOB_NAME} test"
junit 'report/'
}
}
}
}
13 changes: 13 additions & 0 deletions assets/IS/Packages/AIADemo6/manifest.bak
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>

<Values version="2.0">
<value name="enabled">yes</value>
<value name="system_package">no</value>
<value name="version">1.0</value>
<null name="startup_services"/>
<null name="shutdown_services"/>
<null name="replication_services"/>
<null name="requires"/>
<null name="listACL"/>
<value name="webappLoad">yes</value>
</Values>
34 changes: 34 additions & 0 deletions assets/IS/Packages/Calc/.classpath
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="src" path="code/source"/>
<classpathentry kind="lib" path="code/jars"/>
<classpathentry kind="lib" path="lib"/>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/>
<classpathentry kind="var" path="IS_CLIENT"/>
<classpathentry kind="var" path="IS_SERVER"/>
<classpathentry kind="var" path="IS_ENTTK"/>
<classpathentry kind="var" path="IS_MAIL"/>
<classpathentry kind="var" path="IS_G11N"/>
<classpathentry kind="var" path="IS_ICU4J"/>
<classpathentry kind="var" path="IS_WSDL4J"/>
<classpathentry kind="var" path="IS_CORE"/>
<classpathentry kind="var" path="IS_EDITOR"/>
<classpathentry kind="var" path="IS_UIUTILS"/>
<classpathentry kind="var" path="ECLIPSE_OSGI"/>
<classpathentry kind="var" path="ECLIPSE_EQUINOX"/>
<classpathentry kind="var" path="ECLIPSE_DRAW2D"/>
<classpathentry kind="var" path="ECLIPSE_JFACE"/>
<classpathentry kind="var" path="ECLIPSE_SWT"/>
<classpathentry kind="var" path="ECLIPSE_CORECMD"/>
<classpathentry kind="var" path="ECLIPSE_CORERUN"/>
<classpathentry kind="var" path="ECLIPSE_UIWB"/>
<classpathentry kind="var" path="ECLIPSE_PREF"/>
<classpathentry kind="var" path="ECLIPSE_JOBS"/>
<classpathentry kind="var" path="ECLIPSE_EQREG"/>
<classpathentry kind="var" path="ECLIPSE_E4_UIWB"/>
<classpathentry kind="var" path="ECLIPSE_E4_UIWB3"/>
<classpathentry kind="var" path="ECLIPSE_E4_MWB"/>
<classpathentry kind="var" path="ECLIPSE_OSGI_SVC"/>
<classpathentry kind="var" path="ECLIPSE_E4_CORE"/>
<classpathentry kind="output" path="code/classes"/>
</classpath>
23 changes: 23 additions & 0 deletions assets/IS/Packages/Calc/.project
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>Calc</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
<buildCommand>
<name>com.softwareag.is.vcsintegration.ISPackageBuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
<nature>com.softwareag.is.vcsintegration.nature</nature>
</natures>
</projectDescription>
13 changes: 13 additions & 0 deletions assets/IS/Packages/Calc/manifest.v3
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>

<Values version="2.0">
<value name="enabled">yes</value>
<value name="system_package">no</value>
<value name="version">1.0</value>
<null name="startup_services"/>
<null name="shutdown_services"/>
<null name="replication_services"/>
<null name="requires"/>
<null name="listACL"/>
<value name="webappLoad">yes</value>
</Values>
Loading