From 4615c92ab121768832da7b3334ee037f5a36e5c4 Mon Sep 17 00:00:00 2001 From: Joe Bellus Date: Tue, 8 Feb 2022 23:31:44 -0500 Subject: [PATCH] Changed naming convesntion for jobs to hyphen --- .gitlab-ci.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0157570..10b37e4 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -15,21 +15,21 @@ test: - apt-get -y install libssl-dev pkg-config - cargo test -build:ui: +build-ui: stage: build image: node:16.13-slim script: - apt-get update - apt-get -y install libssl-dev - npm install - - npm run build + - npm run build artifacts: paths: - dist/ -build:bin: +build-bin: dependencies: - - build:ui + - build-ui variables: RUSTC_WRAPPER: /usr/local/bin/sccache SCCACHE_BUCKET: $SCCACHE_BUCKET @@ -53,9 +53,9 @@ build:bin: paths: - target/release/vade -build:docker: +build-docker: dependencies: - - build:bin + - build-bin image: docker:19.03.12 services: - docker:19.03.12-dind @@ -68,9 +68,9 @@ build:docker: # rules: # - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH -deploy:binaries: +deploy-binaries: dependencies: - - build:bin + - build-bin image: curlimages/curl:latest stage: deploy rules: