ci: Updated docker image to archlinux/base

This commit is contained in:
Natale Patriciello
2019-02-09 10:02:01 +01:00
parent b4cd4aa869
commit f6c49ef713
2 changed files with 6 additions and 6 deletions

View File

@@ -22,7 +22,7 @@
# Run the test.py script with files compiled in debug mode
daily-test-debug:
extends: .base-test
image: base/archlinux
image: archlinux/base
variables:
COMPILER: g++
MODE: debug
@@ -35,7 +35,7 @@ daily-test-debug:
# Run the test.py script with files compiled in release mode
daily-test-release:
extends: .base-test
image: base/archlinux
image: archlinux/base
variables:
COMPILER: g++
MODE: release
@@ -48,7 +48,7 @@ daily-test-release:
# Run the test.py script with files compiled in optimized mode
daily-test-optimized:
extends: .base-test
image: base/archlinux
image: archlinux/base
variables:
COMPILER: g++
MODE: optimized

View File

@@ -48,7 +48,7 @@ stages:
# Defines the per-commit jobs. They are executed for any branch
per-commit-compile-debug:
extends: .base-build
image: base/archlinux
image: archlinux/base
variables:
COMPILER: g++
MODE: debug
@@ -57,7 +57,7 @@ per-commit-compile-debug:
per-commit-compile-release:
extends: .base-build
image: base/archlinux
image: archlinux/base
variables:
COMPILER: g++
MODE: release
@@ -66,7 +66,7 @@ per-commit-compile-release:
per-commit-compile-optimized:
extends: .base-build
image: base/archlinux
image: archlinux/base
variables:
COMPILER: g++
MODE: optimized