Skip to content

Commit ec7ae05

Browse files
mayastor-borstiagolobocastro
andcommitted
chore(bors): merge pull request #626
626: ci(gha): disable man-pages update r=tiagolobocastro a=tiagolobocastro When running image test we install kernel modules which triggers a very slow update of man-pages. Co-authored-by: Tiago Castro <[email protected]>
2 parents 27fa003 + 6b7915e commit ec7ae05

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/k8s-ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,10 @@ jobs:
2929
- name: Pre-populate pytest nix-shell
3030
run: nix-shell ./scripts/python/shell.nix --run "echo"
3131
- name: BootStrap k8s cluster
32-
run: nix-shell ./scripts/k8s/shell.nix --run "./scripts/k8s/deployer.sh start --label"
32+
run: |
33+
sudo debconf-communicate <<< "set man-db/auto-update false" || true
34+
sudo dpkg-reconfigure man-db || true
35+
nix-shell ./scripts/k8s/shell.nix --run "./scripts/k8s/deployer.sh start --label"
3336
- name: Prepare v-next images and binary
3437
run: nix-shell ./scripts/python/shell.nix --run "./scripts/python/upgrade-test-helper.sh --build --chart-tag --chart ./chart"
3538
- name: Load images to kind cluster

0 commit comments

Comments
 (0)