We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5b72836 commit 11dcefbCopy full SHA for 11dcefb
.github/workflows/run_affected_benchmarks.yml
@@ -119,3 +119,12 @@ jobs:
119
make benchmark-javascript-files FILES="${files}"
120
fi
121
timeout-minutes: 30
122
+
123
+ # Run C benchmarks:
124
+ - name: 'Run C benchmarks'
125
+ run: |
126
+ files=$(echo "${{ steps.changed-files.outputs.files }}" | tr ' ' '\n' | grep -E '\.c$' | sed "s|^|${GITHUB_WORKSPACE}/|" | tr '\n' ' ' | sed 's/ $//')
127
+ if [ -n "$files" ]; then
128
+ make benchmark-c-files FILES="${files}"
129
+ fi
130
+ timeout-minutes: 15
0 commit comments