ci(backend): fix backend pipeline targets

This commit is contained in:
Sarah Vaupel 2024-09-12 00:55:50 +02:00
parent 56c26cdc04
commit 4d0bcca246

View File

@ -36,7 +36,7 @@ default:
compile:
stage: compile
script:
- make -- backend-build${PROD_BUILD}
- make -- compile${PROD_BUILD}-backend IN_CI=true IN_CONTAINER=true
artifacts:
paths:
- ${CI_PROJECT_DIR}/.stack-work/
@ -46,7 +46,7 @@ compile:
lint:
stage: lint
script:
- make -- backend-lint${PROD_BUILD}
- make -- lint${PROD_BUILD}-backend IN_CI=true IN_CONTAINER=true
cache: *backend-cache
test:
@ -54,7 +54,7 @@ test:
needs:
- compile
script:
- make -- backend-test${PROD_BUILD}
- make -- test${PROD_BUILD}-backend IN_CI=true IN_CONTAINER=true
cache: *backend-cache
container: