dd-008-richer-input: mention @DecFox reviews (#1633) #62
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |