ci: test installing .deb in build (#651)

Add an additional validation step to the .deb file generation in nightly and deployment workflows.
This commit is contained in:
Clement Tsang 2021-12-30 17:48:56 -08:00 committed by GitHub
parent 456efdc242
commit 1481fe4282
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 0 deletions

View File

@ -344,6 +344,9 @@ jobs:
cargo deb --no-build
cp ./target/debian/bottom_*.deb ./bottom_${{ env.RELEASE_VERSION }}_amd64.deb
- name: Test Debian release
run: sudo dpkg -i ./bottom_${{ env.RELEASE_VERSION }}_amd64.deb
- name: Create release directory for artifact, move file
shell: bash
run: |

View File

@ -331,6 +331,9 @@ jobs:
cargo deb --no-build
cp ./target/debian/bottom_*.deb ./bottom_${{ env.RELEASE_VERSION }}_amd64.deb
- name: Test Debian release
run: sudo dpkg -i ./bottom_${{ env.RELEASE_VERSION }}_amd64.deb
- name: Create release directory for artifact, move file
shell: bash
run: |