diff options
author | David Phillips <david@yeah.nah.nz> | 2019-03-11 17:07:29 +1300 |
---|---|---|
committer | David Phillips <david@yeah.nah.nz> | 2019-03-11 17:07:29 +1300 |
commit | 98bc6a685212cb6c8a3fd853545352da8f30549f (patch) | |
tree | d118cd8b2416aea7c8d084c5b9dc354d0a033fcb | |
parent | 77af44871c7d916c9ce63cc9b87021b27f5890bf (diff) | |
download | sand-leek-98bc6a685212cb6c8a3fd853545352da8f30549f.tar.xz |
Add --needed to pacman calls
This should slightly speed up the CI run for Arch Linux
-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 ec0e571..ca78a96 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,7 +5,7 @@ arch: image: archlinux/base stage: build-test-all before_script: - - pacman --noconfirm -Syu base-devel clang python + - pacman --noconfirm --needed -Syu base-devel clang python script: - make CC=gcc clean all test - make CC=clang clean all test |