fix: Rename CI job
This commit is contained in:
parent
d7351ac34f
commit
74eacb6ccf
1 changed files with 4 additions and 5 deletions
|
@ -15,10 +15,9 @@ variables:
|
||||||
# fetch & clean the repo rather than completely cloning (faster)
|
# fetch & clean the repo rather than completely cloning (faster)
|
||||||
GIT_STRATEGY: fetch
|
GIT_STRATEGY: fetch
|
||||||
|
|
||||||
# Dependency stages-- fetch these first so that we can cache them and reuse them
|
# Build the app once and cache it so that we can have fast compiles in test
|
||||||
# across jobs and pipelines. Note that elixir deps need to go first, because
|
# and Docker built steps
|
||||||
# we need the phoenix and phoenix_html hex packages to install their JS.
|
prebuild:
|
||||||
fetch_application_dependencies:
|
|
||||||
stage: prebuild
|
stage: prebuild
|
||||||
image: "elixir:1.10"
|
image: "elixir:1.10"
|
||||||
cache:
|
cache:
|
||||||
|
@ -46,7 +45,7 @@ fetch_asset_dependencies:
|
||||||
stage: asset_dependencies
|
stage: asset_dependencies
|
||||||
image: "node:15.0"
|
image: "node:15.0"
|
||||||
needs:
|
needs:
|
||||||
- fetch_application_dependencies
|
- prebuild
|
||||||
only:
|
only:
|
||||||
- master
|
- master
|
||||||
cache:
|
cache:
|
||||||
|
|
Loading…
Reference in a new issue