Skip to content

fix(gardener): avoid issues caused by stale databases (#1516) #58

fix(gardener): avoid issues caused by stale databases (#1516)

fix(gardener): avoid issues caused by stale databases (#1516) #58

Workflow file for this run

# Ensures we can install on debian with the official build instructions
name: debianrepo
on:
push:
branches:
- "master"
- "release/**"
- "fullbuild"
jobs:
test_386:
runs-on: "ubuntu-22.04"
steps:
- uses: actions/checkout@v3
- run: sudo ./E2E/debian.bash docker i386
- run: sudo cat DEBIAN_INSTALLED_PACKAGE.txt
test_amd64:
runs-on: "ubuntu-22.04"
steps:
- uses: actions/checkout@v3
- run: sudo ./E2E/debian.bash docker amd64
- run: sudo cat DEBIAN_INSTALLED_PACKAGE.txt
test_arm:
runs-on: "ubuntu-22.04"
steps:
- uses: actions/checkout@v3
- run: sudo ./E2E/debian.bash docker armhf
- run: sudo cat DEBIAN_INSTALLED_PACKAGE.txt
test_arm64:
runs-on: "ubuntu-22.04"
steps:
- uses: actions/checkout@v3
- run: sudo ./E2E/debian.bash docker arm64
- run: sudo cat DEBIAN_INSTALLED_PACKAGE.txt