Skip to content

Commit 332365b

Browse files
authored
Miscellaneous EVG compilation script improvements (#1710)
* Fix CCACHE_BASEDIR on Windows distros * Revert git clone workaround for libmongocrypt * Use DEBUG configurations by default and make RELEASE opt-in * Separate source and binary directories
1 parent eb27fd0 commit 332365b

File tree

19 files changed

+107
-138
lines changed

19 files changed

+107
-138
lines changed

.evergreen/config_generator/components/cse/darwinssl.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,6 @@ def tasks():
6262
def variants():
6363
expansions = {
6464
'CLIENT_SIDE_ENCRYPTION': 'on',
65-
'DEBUG': 'ON',
6665
}
6766

6867
return [

.evergreen/config_generator/components/cse/openssl.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ def tasks():
8585
def variants():
8686
expansions = {
8787
'CLIENT_SIDE_ENCRYPTION': 'on',
88-
'DEBUG': 'ON',
8988
}
9089

9190
return [

.evergreen/config_generator/components/cse/winssl.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,6 @@ def tasks():
6363
def variants():
6464
expansions = {
6565
'CLIENT_SIDE_ENCRYPTION': 'on',
66-
'DEBUG': 'ON',
6766
}
6867

6968
return [

.evergreen/config_generator/components/sasl/darwinssl.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,7 @@ def tasks():
5555

5656

5757
def variants():
58-
expansions = {
59-
'DEBUG': 'ON'
60-
}
58+
expansions = {}
6159

6260
return [
6361
BuildVariant(

.evergreen/config_generator/components/sasl/nossl.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,9 +58,7 @@ def tasks():
5858

5959

6060
def variants():
61-
expansions = {
62-
'DEBUG': 'ON'
63-
}
61+
expansions = {}
6462

6563
return [
6664
BuildVariant(

.evergreen/config_generator/components/sasl/openssl.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,7 @@ def tasks():
8181

8282

8383
def variants():
84-
expansions = {
85-
'DEBUG': 'ON'
86-
}
84+
expansions = {}
8785

8886
return [
8987
BuildVariant(

.evergreen/config_generator/components/sasl/winssl.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -78,9 +78,7 @@ def tasks():
7878

7979

8080
def variants():
81-
expansions = {
82-
'DEBUG': 'ON'
83-
}
81+
expansions = {}
8482

8583
return [
8684
BuildVariant(

0 commit comments

Comments
 (0)