diff options
author | HampusM <hampus@hampusmat.com> | 2021-07-07 18:26:20 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2021-07-07 18:26:20 +0200 |
commit | f54b396ca74186b82e1491fa6b19a35083541e7f (patch) | |
tree | e67d629925594cb5f0bce8174a8470e76af73685 /.gitlab-ci.yml | |
parent | 66022d5546b32b6ec0dde12f581bfad0c8fcdc18 (diff) |
Added installation of apt-utils to Gitlab CI test job
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 76994c3..9e38505 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,7 +6,9 @@ cache: test: before_script: - - apt-get update -qq && apt-get install -y -qq git libpcre3 libpcre2-posix0 libkrb5-3 libk5crypto3 libcom-err2 libssl1.1 libssl-dev + - apt-get update -y -qq + - apt-get install -y -qq apt-utils + - apt-get install -y -qq git libpcre3 libpcre2-posix0 libkrb5-3 libk5crypto3 libcom-err2 libssl1.1 libssl-dev script: - yarn install - yarn test
\ No newline at end of file |