1
0
Fork 0
mirror of https://gitlab.com/futo-org/fcast.git synced 2025-08-09 18:52:50 +00:00
fcast/receivers/tizen/.gitlab-ci.yml
2025-02-19 13:08:29 -06:00

34 lines
941 B
YAML

buildTizenOSDockerContainer:
stage: buildDockerContainers
image: docker:20.10.16
services:
- docker:20.10.16-dind
tags:
- fcast-instance-runner
before_script:
- cd receivers/tizen
script:
- echo "$CI_REGISTRY_PASSWORD" | docker login $CI_REGISTRY -u $CI_REGISTRY_USER --password-stdin
- docker build -t $CI_REGISTRY/videostreaming/fcast/receiver-tizen-dev:latest .
- docker push $CI_REGISTRY/videostreaming/fcast/receiver-tizen-dev:latest
when: manual
buildTizenOSReceiver:
stage: buildTizenOSReceiver
image: gitlab.futo.org:5050/videostreaming/fcast/receiver-tizen-dev:latest
tags:
- fcast-instance-runner
before_script:
- cd receivers/tizen
script:
- npm install
- scripts/build.sh
artifacts:
untracked: false
when: on_success
access: all
expire_in: "30 days"
paths:
- receivers/tizen/FCastReceiver/.buildResult/FCastReceiver.wgt
when: manual