Skip to content

Commit

Permalink
chore: for testing purposes
Browse files Browse the repository at this point in the history
  • Loading branch information
v1v committed Sep 25, 2019
1 parent 816c0a4 commit 2fc0dfd
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ pipeline {
}
parameters {
booleanParam(name: 'Run_As_Master_Branch', defaultValue: false, description: 'Allow to run any steps on a PR, some steps normally only run on master branch.')
booleanParam(name: 'bench_ci', defaultValue: true, description: 'Enable benchmarks.')
booleanParam(name: 'tav_ci', defaultValue: true, description: 'Enable TAV tests.')
booleanParam(name: 'bench_ci', defaultValue: false, description: 'Enable benchmarks.')
booleanParam(name: 'tav_ci', defaultValue: false, description: 'Enable TAV tests.')
booleanParam(name: 'tests_ci', defaultValue: true, description: 'Enable tests.')
booleanParam(name: 'test_edge_ci', defaultValue: true, description: 'Enable tests for edge versions of nodejs.')
booleanParam(name: 'test_edge_ci', defaultValue: false, description: 'Enable tests for edge versions of nodejs.')
}
stages {
/**
Expand Down Expand Up @@ -76,7 +76,7 @@ pipeline {
script {
def node = readYaml(file: '.ci/.jenkins_nodejs.yml')
def parallelTasks = [:]
def parallelTasksWithoutAsyncHooks = [:]
/*def parallelTasksWithoutAsyncHooks = [:]
node['NODEJS_VERSION'].each{ version ->
parallelTasks["Node.js-${version}"] = generateStep(version: version)
if (!version.startsWith('6')) {
Expand All @@ -89,7 +89,7 @@ pipeline {
// Linting in parallel with the test stage
parallelTasks['linting'] = linting()
}

*/
// Windows
parallelTasks['Windows-Node.js-10'] = generateStepForWindows(version: '10')

Expand Down

0 comments on commit 2fc0dfd

Please sign in to comment.