aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorÉrico Rolim <erico.erc@gmail.com>2020-12-18 17:53:10 +0000
committerÉrico Nogueira Rolim <34201958+ericonr@users.noreply.github.com>2020-12-23 19:14:53 +0000
commitb6e7863cbd662f0249c4b654c7f550456edabfa0 (patch)
treef6ae179b345dd47af5ddf825ec12942507cccab8 /.github/workflows
parentec223373c61e3c936f55dcdefcf04c30074aa234 (diff)
downloadvoid-packages-b6e7863cbd662f0249c4b654c7f550456edabfa0.tar
void-packages-b6e7863cbd662f0249c4b654c7f550456edabfa0.tar.gz
void-packages-b6e7863cbd662f0249c4b654c7f550456edabfa0.tar.bz2
void-packages-b6e7863cbd662f0249c4b654c7f550456edabfa0.tar.lz
void-packages-b6e7863cbd662f0249c4b654c7f550456edabfa0.tar.xz
void-packages-b6e7863cbd662f0249c4b654c7f550456edabfa0.tar.zst
void-packages-b6e7863cbd662f0249c4b654c7f550456edabfa0.zip
.github/workflows: add script to check that packages can still be
installed. This will allow us to confirm the repository's staging state in CI.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/build.yaml8
1 files changed, 8 insertions, 0 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index be2fd7969db..72f2b3811a3 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -87,3 +87,11 @@ jobs:
cd /
"$here/common/travis/show_files.sh" "$BOOTSTRAP" "$ARCH"
)
+
+ - name: Verify repository state
+ run: |
+ (
+ here="$(pwd)"
+ cd /
+ "$here/common/travis/check-install.sh" "$BOOTSTRAP" "$ARCH"
+ )