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 1c492ab commit a37263c
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 @@ -74,7 +74,7 @@ pipeline {
unstash 'source'
dir("${BASE_DIR}"){
script {
def node = readYaml(file: '.ci/.jenkins_nodejs.yml')
/*def node = readYaml(file: '.ci/.jenkins_nodejs.yml')
def parallelTasks = [:]
def parallelTasksWithoutAsyncHooks = [:]
node['NODEJS_VERSION'].each{ version ->
Expand All @@ -89,7 +89,7 @@ pipeline {
// Linting in parallel with the test stage
parallelTasks['linting'] = linting()
}

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

Expand Down

0 comments on commit a37263c

Please sign in to comment.