2022-07-01 12:11:32 +02:00
|
|
|
# Ensures we can install on debian with the official build instructions
|
2021-10-21 11:04:27 +02:00
|
|
|
name: debianrepo
|
2021-05-19 14:12:33 +02:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
2021-10-21 16:55:00 +02:00
|
|
|
- "master"
|
2021-10-22 15:41:53 +02:00
|
|
|
- "release/**"
|
2021-05-19 14:12:33 +02:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
test_386:
|
|
|
|
runs-on: "ubuntu-20.04"
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-10-21 16:55:00 +02:00
|
|
|
- run: sudo ./E2E/debian.sh docker i386
|
|
|
|
- run: sudo cat DEBIAN_INSTALLED_PACKAGE.txt
|
2021-05-19 14:12:33 +02:00
|
|
|
|
|
|
|
test_amd64:
|
|
|
|
runs-on: "ubuntu-20.04"
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-10-21 16:55:00 +02:00
|
|
|
- run: sudo ./E2E/debian.sh docker amd64
|
|
|
|
- run: sudo cat DEBIAN_INSTALLED_PACKAGE.txt
|
2021-05-19 14:12:33 +02:00
|
|
|
|
|
|
|
test_arm:
|
|
|
|
runs-on: "ubuntu-20.04"
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-10-21 16:55:00 +02:00
|
|
|
- run: sudo ./E2E/debian.sh docker armhf
|
|
|
|
- run: sudo cat DEBIAN_INSTALLED_PACKAGE.txt
|
2021-05-19 14:12:33 +02:00
|
|
|
|
2021-10-21 16:55:00 +02:00
|
|
|
test_arm64:
|
2021-05-19 14:12:33 +02:00
|
|
|
runs-on: "ubuntu-20.04"
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-10-21 16:55:00 +02:00
|
|
|
- run: sudo ./E2E/debian.sh docker arm64
|
|
|
|
- run: sudo cat DEBIAN_INSTALLED_PACKAGE.txt
|