diff options
| author | Mathieu Parent <math.parent@gmail.com> | 2019-01-10 10:36:56 +0100 |
|---|---|---|
| committer | Mathieu Parent <math.parent@gmail.com> | 2019-05-30 21:30:16 +0200 |
| commit | bf891d3c0548a536fcf5444f3e40b12671ceb753 (patch) | |
| tree | 56aff145ff36c040d1ed35283b4eb1053bc54365 /.gitlab-ci.yml | |
| parent | Merge branch '4182-ask-for-docker-windows-in-registration' into 'master' (diff) | |
| download | gitlab-runner-bf891d3c0548a536fcf5444f3e40b12671ceb753.tar.gz | |
Fix "WARNING: apt does not have a stable CLI interface. Use with caution in scripts"
Diffstat (limited to '.gitlab-ci.yml')
| -rw-r--r-- | .gitlab-ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 512b4e81..401f5271 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -175,8 +175,8 @@ tests definitions: # in this step, the version difference doesn't matter image: golang:1.10 script: - - apt update - - apt install make + - apt-get update + - apt-get install -y make - source ci/touch_make_dependencies - make parallel_test_prepare artifacts: |
