Skip to content

Commit

Permalink
NXP-32456: Enable ftest in retention repository lts 2021
Browse files Browse the repository at this point in the history
  • Loading branch information
rahuljain-dev committed Apr 8, 2024
1 parent fc79347 commit b799086
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
5 changes: 1 addition & 4 deletions ci/Jenkinsfiles/build.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Closure buildUnitTestStage(env) {

pipeline {
agent {
label 'jenkins-nuxeo-package-lts-2021'
label 'jenkins-nuxeo-package-lts-2021-nodejs18'
}
options {
buildDiscarder(logRotator(daysToKeepStr: '60', numToKeepStr: '60', artifactNumToKeepStr: '5'))
Expand Down Expand Up @@ -155,8 +155,6 @@ pipeline {
}
}
nxWithGitHubStatus(context: 'ftests') {
echo "Functional tests are disabled (https://jira.nuxeo.com/browse/WEBUI-1260 and https://jira.nuxeo.com/browse/WEBUI-1252)"
/*
script {
def testNamespace = "${CURRENT_NAMESPACE}-retention-${BRANCH_NAME}-${BUILD_NUMBER}-ftests".replaceAll('\\.', '-').toLowerCase()
def nuxeoParentVersion = readMavenPom().getParent().getVersion()
Expand All @@ -170,7 +168,6 @@ pipeline {
}
}
}
*/
}
}
}
Expand Down
4 changes: 2 additions & 2 deletions nuxeo-retention-web/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ limitations under the License.
<exec executable="node" failonerror="true" outputproperty="node-version">
<arg value="--version" />
</exec>
<fail message="NodeJS version must be 14">
<fail message="NodeJS version must be 18">
<condition>
<not>
<contains string="${node-version}" substring="v14" />
<contains string="${node-version}" substring="v18" />
</not>
</condition>
</fail>
Expand Down

0 comments on commit b799086

Please sign in to comment.