From 3652d594a902c6dbd6c6a94cc6ed489875f04a1c Mon Sep 17 00:00:00 2001 From: Josh Morgenstern <josh@morgenstern.dev> Date: Mon, 12 Jul 2021 23:03:01 +0200 Subject: [PATCH] [#86] change job name to mac --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index dc8d3044..356ae10d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ variables: RUN: value: "all" - description: "The tests that should run. Possible values: ubuntu, win, osx, all." + description: "The tests that should run. Possible values: ubuntu, win, mac, all." GIT_DEPTH: 1 stages: @@ -51,10 +51,10 @@ build_win10_msvc: - cmake -DCMAKE_BUILD_TYPE=Debug .. - cmake --build . -build_osx_clang: +build_mac_clang: only: variables: - - $RUN =~ /\bosx.*/i || $RUN =~ /\ball.*/i + - $RUN =~ /\bmac.*/i || $RUN =~ /\ball.*/i stage: build tags: - catalina-clang-cached -- GitLab