You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/actions/artifacts_build/action.yml
+22-7Lines changed: 22 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -8,19 +8,21 @@ inputs:
8
8
required: false
9
9
description: "AWS Region, required only if push_image is true"
10
10
image_uri_with_tag:
11
-
required: true
12
-
description: "Image URI with Tag"
11
+
required: false
12
+
description: "Image URI with Tag, required only if build_image is true"
13
13
image_registry:
14
14
required: false
15
15
description: "Image Registry, required only if push_image is true"
16
16
snapshot-ecr-role:
17
17
required: false
18
18
description: "IAM Role used for pushing to snapshot ecr, required only if push_image is true"
19
19
push_image:
20
-
required: true
20
+
required: false
21
+
default: 'false'
21
22
description: "Whether push image to ECR"
22
23
load_image:
23
-
required: true
24
+
required: false
25
+
default: 'false'
24
26
description: "Whether load the image for the following use, only load in PR build"
25
27
python_version:
26
28
required: true
@@ -31,6 +33,14 @@ inputs:
31
33
os:
32
34
required: true
33
35
description: "The os"
36
+
run_unit_tests:
37
+
required: false
38
+
default: 'true'
39
+
description: "Whether to run unit tests during setup. Set to false when unit tests run in a separate job."
40
+
build_image:
41
+
required: false
42
+
default: 'true'
43
+
description: "Whether to build and scan the operator image. Set to false for wheel-only callers (e.g. contract tests, which don't use the operator image)."
Copy file name to clipboardExpand all lines: .github/actions/set_up/action.yml
+9Lines changed: 9 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -15,6 +15,10 @@ inputs:
15
15
run_unit_tests:
16
16
required: true
17
17
description: "true/false flag indicating if we should run unit tests/benchmarks with tox"
18
+
wheel_path:
19
+
required: false
20
+
default: ''
21
+
description: "Optional path to a prebuilt aws-opentelemetry-distro wheel. When set, tox installs the distro from this wheel (via ADOT_WHEEL) instead of building from source."
0 commit comments