We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c0ec6fa commit 17adc59Copy full SHA for 17adc59
.github/workflows/pages.yml
@@ -84,7 +84,13 @@ jobs:
84
- name: Extract performance data
85
run: |
86
mkdir -p build/perf_stat_dir
87
+ # The uploaded artifact contains a nested perf-stat.zip inside.
88
+ # First unzip extracts the inner archive; the second extracts perf_stat_dir/*.
89
unzip -o perf-stat.zip -d .
90
+ if [ -f "perf-stat.zip" ]; then
91
+ mv -f perf-stat.zip perf-stat-inner.zip
92
+ unzip -o perf-stat-inner.zip -d .
93
+ fi
94
- name: CMake configure
95
96
cmake -S . -B build -DUSE_SCOREBOARD=ON
0 commit comments