We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68d6777 commit bd89a55Copy full SHA for bd89a55
.github/workflows/run-tests.yml
@@ -22,11 +22,13 @@ jobs:
22
name: Prepare test types
23
run: |
24
python3 -m pip install pyyaml
25
- echo "tests=$(python3 .github/scripts/parse_testlist.py $RISCV_TARGET)" | tee -a $GITHUB_OUTPUT
+ python3 .github/scripts/parse_testlist.py $RISCV_TARGET > tests.list
26
+ echo "tests=$(cat tests.list)" | tee -a $GITHUB_OUTPUT
27
- id: hash
28
name: Prepare files' hash
29
- echo "files-hash=$(sha256sum **/*.sv **/*.py **/*.yml **/*.yaml | cut -d\ -f1 | sha256sum | cut -d\ -f1)" | tee -a $GITHUB_OUTPUT
30
+ sha256sum **/*.sv **/*.py **/*.yml **/*.yaml > file.hash
31
+ echo "files-hash=$(cat file.hash | cut -d\ -f1 | sha256sum | cut -d\ -f1)" | tee -a $GITHUB_OUTPUT
32
33
34
generate-code:
0 commit comments