We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a780637 commit ae64c51Copy full SHA for ae64c51
1 file changed
.github/workflows/e2e.yaml
@@ -37,21 +37,6 @@ jobs:
37
- uses: actions/checkout@v2
38
with:
39
submodules: true
40
- - name: Disable containerd image store
41
- run: |
42
- DAEMON_JSON="/etc/docker/daemon.json"
43
- if [ -f "$DAEMON_JSON" ]; then
44
- sudo jq '. + {"features": {"containerd-snapshotter": false}}' "$DAEMON_JSON" \
45
- | sudo tee "${DAEMON_JSON}.tmp" > /dev/null
46
- sudo mv "${DAEMON_JSON}.tmp" "$DAEMON_JSON"
47
- else
48
- echo '{"features": {"containerd-snapshotter": false}}' \
49
- | sudo tee "$DAEMON_JSON" > /dev/null
50
- fi
51
- sudo systemctl restart docker
52
- docker version
53
- docker info
54
- echo "DOCKER_API_VERSION=$(docker version --format '{{.Server.APIVersion}}')" >> "$GITHUB_ENV"
55
- uses: actions/setup-java@v2
56
57
distribution: temurin
0 commit comments