Changed naming convesntion for jobs to hyphen
This commit is contained in:
parent
59e4fa07f5
commit
4615c92ab1
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue