ci: Removed 'y', as per update database, from the CI script for archlinux

This commit is contained in:
Natale Patriciello
2019-02-17 22:00:18 +01:00
parent 9e1d40a85b
commit c466278f05
2 changed files with 6 additions and 6 deletions

View File

@@ -30,7 +30,7 @@ daily-test-debug:
variables:
- $RELEASE == "daily"
before_script:
- pacman -Sy base-devel python ccache gsl libgcrypt gtk3 boost --noconfirm
- pacman -S base-devel python ccache gsl libgcrypt gtk3 boost --noconfirm
# Run the test.py script with files compiled in release mode
daily-test-release:
@@ -43,7 +43,7 @@ daily-test-release:
variables:
- $RELEASE == "daily"
before_script:
- pacman -Sy base-devel python ccache gsl libgcrypt gtk3 boost --noconfirm
- pacman -S base-devel python ccache gsl libgcrypt gtk3 boost --noconfirm
# Run the test.py script with files compiled in optimized mode
daily-test-optimized:
@@ -56,4 +56,4 @@ daily-test-optimized:
variables:
- $RELEASE == "daily"
before_script:
- pacman -Sy base-devel python ccache gsl libgcrypt gtk3 boost --noconfirm
- pacman -S base-devel python ccache gsl libgcrypt gtk3 boost --noconfirm

View File

@@ -53,7 +53,7 @@ per-commit-compile-debug:
COMPILER: g++
MODE: debug
before_script:
- pacman -Sy base-devel python ccache gsl libgcrypt gtk3 boost --noconfirm
- pacman -S base-devel python ccache gsl libgcrypt gtk3 boost --noconfirm
per-commit-compile-release:
extends: .base-build
@@ -62,7 +62,7 @@ per-commit-compile-release:
COMPILER: g++
MODE: release
before_script:
- pacman -Sy base-devel python ccache gsl libgcrypt gtk3 boost --noconfirm
- pacman -S base-devel python ccache gsl libgcrypt gtk3 boost --noconfirm
per-commit-compile-optimized:
extends: .base-build
@@ -71,7 +71,7 @@ per-commit-compile-optimized:
COMPILER: g++
MODE: optimized
before_script:
- pacman -Sy base-devel python ccache gsl libgcrypt gtk3 boost --noconfirm
- pacman -S base-devel python ccache gsl libgcrypt gtk3 boost --noconfirm
# Weekly jobs for other distribution and compilers
include: