46 lines
843 B
YAML
46 lines
843 B
YAML
stages:
|
|
- build-devel
|
|
- test-devel
|
|
- publish-rolling
|
|
|
|
# Required Input From Trigger
|
|
# OS_DISTRO: ex. ubuntu
|
|
# OS_RELEASE: ex. eoan
|
|
# PACKAGE_STREAM: ex. eoan
|
|
|
|
variables:
|
|
ci_token: "38569832d11dfd78ba2a457ebb5b99"
|
|
PACKAGE_REPOSITORY: "https://repositories.intel.com/graphics"
|
|
REGISTRY_URL: "amr-registry.caas.intel.com/vtt-osgc/solutions"
|
|
CONTAINER: "intel-media-ffmpeg"
|
|
|
|
build_devel_image:
|
|
stage: "build-devel"
|
|
script:
|
|
- ./scripts/build-dockerfile.sh
|
|
- ./scripts/build-image.sh
|
|
- ./scripts/push-test-image.sh
|
|
tags:
|
|
- builder
|
|
- ubuntu
|
|
only:
|
|
- triggers
|
|
|
|
test_devel_image:
|
|
stage: "test-devel"
|
|
script:
|
|
- ./scripts/test-tag.sh
|
|
tags:
|
|
- gen9
|
|
only:
|
|
- triggers
|
|
|
|
publish_rolling_image:
|
|
stage: "publish-rolling"
|
|
script:
|
|
- ./scripts/push-rolling-image.sh
|
|
tags:
|
|
- builder
|
|
- ubuntu
|
|
only:
|
|
- triggers |