Skip to content

Commit dd6b875

Browse files
authored
Merge pull request #11337 from jsquyres/pr/jenkinsfile-debugging
Jenkinsfile: reduce CI resource using while debugging
2 parents 12857c3 + 6406e00 commit dd6b875

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.ci/community-jenkins/Jenkinsfile

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
// Copyright (c) 2022-2023 Amazon.com, Inc. or its affiliates. All rights
44
// reserved.
55
// Copyright (c) 2022-2023 Joe Downs. All rights reserved.
6+
// Copyright (c) 2023 Cisco Systems, Inc. All rights reserved.
67
// $COPYRIGHT$
78
//
89
// Additional copyrights may follow
@@ -47,6 +48,17 @@ def prepare_check_stages() {
4748
def configure_options = ["--disable-dlopen", "--disable-oshmem", "--enable-builtin-atomic", "--enable-ipv6"]
4849
def compilers = ["clang10", "gcc5", "gcc6", "gcc7", "gcc8", "gcc9", "gcc10"]
4950
def platforms = ["amazon_linux_2", "amazon_linux_2-arm64", "rhel7", "rhel8", "ubuntu_18.04"]
51+
52+
// TODO: While we are debugging, limit the number of combinations
53+
// that we're running so that we don't waste a bunch of resources.
54+
// Make all the lists empty so that the only check we do is the
55+
// "distcheck" entry, below. When we have finished debugging,
56+
// remove the following lines so that we go back to the full set
57+
// of test environments.
58+
configure_options = []
59+
compilers = []
60+
platforms = []
61+
5062
def check_stages_list = []
5163

5264
// Build everything stage

0 commit comments

Comments
 (0)