Skip to content

Commit 47db25f

Browse files
Temporary pause TDE e2e tests
1 parent 3690ee1 commit 47db25f

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

.github/actions/list-examples/action.yaml

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: "List examples to be used by e2e tests"
22
description: "Return JSON array with a list of examples defined"
3-
inputs: {}
3+
inputs:
4+
ignore:
5+
required: false
6+
description: "Regex to match against example names. Matched examples won't be returned. Empty regex does nothing."
7+
default: "tde"
48

59
outputs:
610
examples:
@@ -12,11 +16,17 @@ runs:
1216
steps:
1317
- shell: bash
1418
id: list
19+
env:
20+
ignoreRegex: "${{ inputs.ignore }}"
1521
run: |
1622
examples="$(echo '[]' | jq .)"
1723
pushd examples/full
1824
for candidate in $(ls -1 .)
1925
do
26+
if [[ ! -z "$ignoreRegex" ]] && [[ "$candidate" =~ "$ignoreRegex" ]]; then
27+
echo "skipping $candidate..."
28+
continue
29+
fi
2030
if [ -d $candidate ]
2131
then
2232
cloud_providers=()

0 commit comments

Comments
 (0)