Skip to content

Commit 28f5591

Browse files
committed
Temporarily switch Docker to overlay2
See gh-49251
1 parent 511fad9 commit 28f5591

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/run-system-tests.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ name: Run System Tests
22
on:
33
push:
44
branches:
5-
- 'main'
5+
- "main"
66
permissions:
77
contents: read
88
jobs:
99
run-system-tests:
10-
name: 'Java ${{ matrix.java.version}}'
10+
name: "Java ${{ matrix.java.version}}"
1111
if: ${{ github.repository == 'spring-projects/spring-boot' }}
1212
runs-on: ${{ vars.UBUNTU_MEDIUM || 'ubuntu-latest' }}
1313
strategy:
@@ -18,6 +18,11 @@ jobs:
1818
- version: 21
1919
toolchain: true
2020
steps:
21+
- name: Switch Docker to Overlay2
22+
shell: bash
23+
run: |
24+
echo '{"storage-driver":"overlay2"}' | sudo tee /etc/docker/daemon.json
25+
sudo systemctl restart docker
2126
- name: Check Out Code
2227
uses: actions/checkout@v6
2328
- name: Prepare Gradle Build

0 commit comments

Comments
 (0)