16 lines
188 B
YAML
16 lines
188 B
YAML
stages:
|
|
- build
|
|
- test
|
|
|
|
variables:
|
|
APP_NAME: "demo-app"
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- echo "Building $APP_NAME"
|
|
|
|
test:
|
|
stage: test
|
|
script:
|
|
- echo "Testing $APP_NAME" |