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 83f3228 commit 84a56c5Copy full SHA for 84a56c5
.github/workflows/overhead-benchmark-daily.yml
@@ -26,7 +26,18 @@ jobs:
26
27
- name: Copy results from gh-pages branch
28
run: |
29
- rsync -avv gh-pages/benchmark-overhead/results/ benchmark-overhead/results/
+ mkdir -p benchmark-overhead/results
30
+ if [ -d "gh-pages/benchmark-overhead/results/" ]; then
31
+ rsync -avv gh-pages/benchmark-overhead/results/ benchmark-overhead/results/
32
+ else
33
+ echo "No existing results directory found, starting fresh"
34
+ fi
35
+
36
+ - name: Set up JDK 21
37
+ uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4.5.0
38
+ with:
39
+ distribution: 'temurin'
40
+ java-version: '21'
41
42
- name: Setup Gradle
43
uses: gradle/actions/setup-gradle@ed408507eac070d1f99cc633dbcf757c94c7933a # v4.4.3
0 commit comments