diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2022-11-17 16:55:14 +0100 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2022-11-17 16:56:11 +0100 |
commit | 9d84f2c6a521a788bc3787520660f76316b940ac (patch) | |
tree | 02740fc6a2a9167b1a63376c645b0ca2b148fb35 | |
parent | 8dd30fcf9026693f64311876ddfdca58756e5415 (diff) | |
download | alpine-conf-9d84f2c6a521a788bc3787520660f76316b940ac.zip |
ci: install squashfs-tools so we actually test update-kernel
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index c247010..05e0c23 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -2,7 +2,7 @@ test-default: image: alpine:latest stage: test script: - - apk add make gcc musl-dev kyua sfdisk openssl + - apk add make gcc musl-dev kyua sfdisk openssl squashfs-tools - make -j $(nproc) check tags: - docker-alpine |