From 510a1ebf7946c0f2798f608da5c97991a6babe2b Mon Sep 17 00:00:00 2001 From: Moritz Maxeiner <mm@ucw.sh> Date: Fri, 5 Jun 2020 15:51:22 +0200 Subject: [PATCH] misc --- .gitlab-ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 42bf822..df0425a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -5,7 +5,7 @@ stages: build centos: stage: build - tags: [ linux, shell ] + tags: [linux, shell] script: - GPU_DRIVER_VERSION="$(dpkg-query --showformat='${Version}' --show 'nvidia-driver-*')" - CACHE_FILE="/var/lib/gitlab-runner/.local/share/robofish-docker-gpu-driver-version" @@ -15,7 +15,7 @@ build centos: deploy centos: stage: deploy - tags: [ linux, shell ] + tags: [linux, shell] only: - master before_script: @@ -28,7 +28,7 @@ deploy centos: build ubuntu: stage: build - tags: [ linux, shell ] + tags: [linux, shell] script: - GPU_DRIVER_VERSION="$(dpkg-query --showformat='${Version}' --show 'nvidia-driver-*')" - CACHE_FILE="/var/lib/gitlab-runner/.local/share/robofish-docker-gpu-driver-version" @@ -38,7 +38,7 @@ build ubuntu: deploy ubuntu: stage: deploy - tags: [ linux, shell ] + tags: [linux, shell] only: - master before_script: @@ -51,7 +51,7 @@ deploy ubuntu: build windows: stage: build - tags: [ windows, shell ] + tags: [windows, shell] before_script: - Copy-Item 'C:/Windows/System32/opengl32.dll' 'windows/devel/opengl32.dll' - Copy-Item 'C:/Windows/System32/glu32.dll' 'windows/devel/glu32.dll' @@ -69,7 +69,7 @@ build windows: deploy windows: stage: deploy - tags: [ windows, shell ] + tags: [windows, shell] only: - master before_script: -- GitLab