Skip to content

Commit b8fd705

Browse files
committed
try only the two for now
Signed-off-by: Christian Henkel <christian.henkel2@de.bosch.com>
1 parent dee5f0d commit b8fd705

1 file changed

Lines changed: 17 additions & 15 deletions

File tree

.github/workflows/check_examples.yml

Lines changed: 17 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,27 @@ on:
44
- push
55

66
jobs:
7-
find-files:
8-
runs-on: ubuntu-latest
9-
outputs:
10-
files: ${{ steps.set-files.outputs.files }}
11-
steps:
12-
- uses: actions/checkout@v3
13-
- name: Find SCXML files
14-
id: set-files
15-
run: |
16-
FILES=$(find examples -type f \( -name "*.ascxml" -o -name "*.scxml" -o -name "*.xml" \) | jq -R . | jq -s .)
17-
FILES=$(echo "$FILES" | tr -d '\n') # Ensure single-line JSON
18-
echo "Files found: $FILES"
19-
echo "files=$FILES" >> $GITHUB_OUTPUT
7+
# find-files:
8+
# runs-on: ubuntu-latest
9+
# outputs:
10+
# files: ${{ steps.set-files.outputs.files }}
11+
# steps:
12+
# - uses: actions/checkout@v3
13+
# - name: Find SCXML files
14+
# id: set-files
15+
# run: |
16+
# FILES=$(find examples -type f \( -name "*.ascxml" -o -name "*.scxml" -o -name "*.xml" \) | jq -R . | jq -s .)
17+
# FILES=$(echo "$FILES" | tr -d '\n') # Ensure single-line JSON
18+
# echo "Files found: $FILES"
19+
# echo "files=$FILES" >> $GITHUB_OUTPUT
2020
validate-xml:
2121
strategy:
2222
matrix:
2323
path:
24-
- ${{ fromJson(needs.find-files.outputs.files) }}
25-
needs: find-files
24+
# - ${{ fromJson(needs.find-files.outputs.files) }}
25+
- examples/UC1-vacuum-cleaner/high-level-models/nodes/robot_model.scxml
26+
- examples/UC1-vacuum-cleaner/main.xml
27+
# needs: find-files
2628
runs-on: ubuntu-latest
2729
steps:
2830
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)