Skip to content

Commit 29cf31d

Browse files
authored
Disable containerd snapshotter for draft release workflow (#1291)
1 parent 3c13886 commit 29cf31d

2 files changed

Lines changed: 14 additions & 0 deletions

File tree

implementation/.github/workflows/create-draft-release.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,13 @@ jobs:
6363
large-packages: false
6464
docker-images: true
6565
swap-storage: true
66+
67+
# Causes errors with integration tests
68+
- name: Disable containerd snapshotter
69+
run: |
70+
echo '{"features": {"containerd-snapshotter": false}}' | sudo tee /etc/docker/daemon.json
71+
sudo systemctl restart docker
72+
6673
- name: Run Integration Tests
6774
run: ./scripts/integration.sh --builder ${{ matrix.builder }} --token ${{ github.token }}
6875
env:

language-family/.github/workflows/create-draft-release.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,13 @@ jobs:
4646
uses: actions/setup-go@v6
4747
with:
4848
go-version-file: go.mod
49+
50+
# Causes errors with integration tests
51+
- name: Disable containerd snapshotter
52+
run: |
53+
echo '{"features": {"containerd-snapshotter": false}}' | sudo tee /etc/docker/daemon.json
54+
sudo systemctl restart docker
55+
4956
- name: Run Integration Tests
5057
env:
5158
TMPDIR: "${{ runner.temp }}"

0 commit comments

Comments
 (0)