CI: update archlinux image

This commit is contained in:
Tommaso Pecorella
2021-04-29 20:45:59 +00:00
parent c3c1b3326f
commit d7a08785d7
3 changed files with 12 additions and 12 deletions

View File

@@ -1,6 +1,6 @@
pybindgen:
stage: build
image: archlinux/base
image: archlinux
only:
variables:
- $PYBINDGEN == "True"

View File

@@ -26,7 +26,7 @@
# Run the test.py script with files compiled in debug mode
daily-test-debug:
extends: .base-test
image: archlinux/base
image: archlinux
variables:
COMPILER: g++
MODE: debug
@@ -43,7 +43,7 @@ daily-test-debug:
# Run the test.py script with files compiled in release mode
daily-test-release:
extends: .base-test
image: archlinux/base
image: archlinux
variables:
COMPILER: g++
MODE: release
@@ -57,7 +57,7 @@ daily-test-release:
# Run the test.py script with files compiled in optimized mode
daily-test-optimized:
extends: .base-test
image: archlinux/base
image: archlinux
variables:
COMPILER: g++
MODE: optimized
@@ -72,7 +72,7 @@ daily-test-optimized:
# Run the test.py script with files compiled in optimized mode + valgrind (daily)
daily-test-optimized-valgrind:
extends: .base-test
image: archlinux/base
image: archlinux
variables:
COMPILER: g++
MODE: optimized
@@ -90,7 +90,7 @@ daily-test-optimized-valgrind:
# Run the test.py script with files compiled in debug mode
weekly-test-debug-valgrind:
extends: .base-test
image: archlinux/base
image: archlinux
variables:
COMPILER: g++
MODE: debug
@@ -108,7 +108,7 @@ weekly-test-debug-valgrind:
# Run the test.py script with files compiled in release mode
weekly-test-release-valgrind:
extends: .base-test
image: archlinux/base
image: archlinux
variables:
COMPILER: g++
MODE: release
@@ -126,7 +126,7 @@ weekly-test-release-valgrind:
# Run the test.py script with files compiled in optimized mode
weekly-test-optimized-valgrind:
extends: .base-test
image: archlinux/base
image: archlinux
variables:
COMPILER: g++
MODE: optimized
@@ -144,7 +144,7 @@ weekly-test-optimized-valgrind:
# Do a check for the TAKES_FOREVER jobs, only in optimized mode
weekly-test-takes-forever-optimized:
extends: .base-test
image: archlinux/base
image: archlinux
variables:
COMPILER: g++
MODE: optimized

View File

@@ -64,7 +64,7 @@ per-commit-compile-debug:
- $PYBINDGEN == "True"
- $RELEASE == "weekly"
- $RELEASE == "daily"
image: archlinux/base
image: archlinux
variables:
COMPILER: g++
MODE: debug
@@ -79,7 +79,7 @@ per-commit-compile-release:
- $PYBINDGEN == "True"
- $RELEASE == "weekly"
- $RELEASE == "daily"
image: archlinux/base
image: archlinux
variables:
COMPILER: g++
MODE: release
@@ -94,7 +94,7 @@ per-commit-compile-optimized:
- $PYBINDGEN == "True"
- $RELEASE == "weekly"
- $RELEASE == "daily"
image: archlinux/base
image: archlinux
variables:
COMPILER: g++
MODE: optimized