2021-05-19 14:12:33 +02:00
|
|
|
# debianrepo 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
|
|
|
- "stable"
|
2021-09-05 12:44:44 +02:00
|
|
|
- "release/**"
|
2021-10-21 16:55:00 +02:00
|
|
|
- "master"
|
|
|
|
- "debianrepo"
|
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
|