Skip to content

Commit d2443f4

Browse files
authored
Add default EVG config_generator Function.call() and update uv lockfile (#2067)
1 parent d2e6be2 commit d2443f4

27 files changed

+47
-136
lines changed

.evergreen/config_generator/components/abi_compliance_check.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,6 @@ class CheckABICompliance(Function):
4848
),
4949
]
5050

51-
@classmethod
52-
def call(cls, **kwargs):
53-
return cls.default_call(**kwargs)
54-
5551

5652
def functions():
5753
return CheckABICompliance.defn()

.evergreen/config_generator/components/c_std_compile.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,6 @@ class StdCompile(Function):
5959
),
6060
]
6161

62-
@classmethod
63-
def call(cls, **kwargs):
64-
return cls.default_call(**kwargs)
65-
6662

6763
def functions():
6864
return StdCompile.defn()

.evergreen/config_generator/components/check_mongoc_public_headers.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@ class CheckMongocPublicHeaders(Function):
2020
),
2121
]
2222

23-
@classmethod
24-
def call(cls, **kwargs):
25-
return cls.default_call(**kwargs)
26-
2723

2824
def functions():
2925
return CheckMongocPublicHeaders.defn()

.evergreen/config_generator/components/clang_format.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,6 @@ class ClangFormat(Function):
2424
),
2525
]
2626

27-
@classmethod
28-
def call(cls, **kwargs):
29-
return cls.default_call(**kwargs)
30-
3127

3228
def functions():
3329
return ClangFormat.defn()

.evergreen/config_generator/components/earthly.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -168,10 +168,6 @@ class DockerLoginAmazonECR(Function):
168168
),
169169
]
170170

171-
@classmethod
172-
def call(cls, **kwargs):
173-
return cls.default_call(**kwargs)
174-
175171

176172
def task_filter(env: EarthlyVariant, conf: Configuration) -> bool:
177173
"""

.evergreen/config_generator/components/funcs/backtrace.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,6 @@ class Backtrace(Function):
1111
),
1212
]
1313

14-
@classmethod
15-
def call(cls, **kwargs):
16-
return cls.default_call(**kwargs)
17-
1814

1915
def functions():
2016
return Backtrace.defn()

.evergreen/config_generator/components/funcs/bootstrap_mongo_orchestration.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,6 @@ class BootstrapMongoOrchestration(Function):
2121
),
2222
]
2323

24-
@classmethod
25-
def call(cls, **kwargs):
26-
return cls.default_call(**kwargs)
27-
2824

2925
def functions():
3026
return BootstrapMongoOrchestration.defn()

.evergreen/config_generator/components/funcs/fetch_det.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,6 @@ class FetchDET(Function):
4040
),
4141
]
4242

43-
@classmethod
44-
def call(cls, **kwargs):
45-
return cls.default_call(**kwargs)
46-
4743

4844
def functions():
4945
return FetchDET.defn()

.evergreen/config_generator/components/funcs/fetch_source.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,6 @@ class FetchSource(Function):
3939
),
4040
]
4141

42-
@classmethod
43-
def call(cls, **kwargs):
44-
return cls.default_call(**kwargs)
45-
4642

4743
def functions():
4844
return FetchSource.defn()

.evergreen/config_generator/components/funcs/restore_instance_profile.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -34,10 +34,6 @@ class RestoreInstanceProfile(Function):
3434
),
3535
]
3636

37-
@classmethod
38-
def call(cls, **kwargs):
39-
return cls.default_call(**kwargs)
40-
4137

4238
def functions():
4339
return RestoreInstanceProfile.defn()

0 commit comments

Comments
 (0)