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 47d8861 commit 56461ecCopy full SHA for 56461ec
devops/actions/run-tests/benchmark/action.yml
@@ -151,9 +151,11 @@ runs:
151
--results-dir "./llvm-ci-perf-results/results/"
152
153
- name: Cache changes to benchmark folder for archival purposes
154
+ if: always()
155
shell: bash
156
run: |
157
cd "./llvm-ci-perf-results"
158
+ git add .
159
for diff in $(git diff HEAD --name-only); do
160
mkdir -p "../cached_changes/$(dirname $diff)"
161
cp "$diff" "../cached_changes/$diff"
@@ -167,7 +169,6 @@ runs:
167
169
git config user.email "[email protected]"
168
170
results_branch="unify-ci"
171
- git add .
172
if git diff --quiet && git diff --cached --quiet; then
173
echo "No new results added, skipping push."
174
exit 0
0 commit comments