Changed naming convesntion for jobs to hyphen

This commit is contained in:
Joe Bellus 2022-02-08 23:31:44 -05:00
parent 59e4fa07f5
commit 4615c92ab1
1 changed files with 8 additions and 8 deletions

View File

@ -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: