1
0
Fork 0
mirror of https://gitlab.com/futo-org/fcast.git synced 2025-07-12 17:08:45 +00:00

Gitlab CI Testing

This commit is contained in:
Michael Hollister 2024-10-19 11:24:39 -05:00
parent ecbcc35c34
commit c58e974079

View file

@ -1,15 +1,17 @@
buildElectronDockerContainer: buildElectronDockerContainer:
stage: buildDockerContainers stage: buildDockerContainers
image: docker image: docker:20.10.16
services:
- docker:20.10.16-dind
tags: tags:
- fcast - fcast
before_script: before_script:
- cd receivers/electron - cd receivers/electron
script: script:
- echo "$CI_REGISTRY_PASSWORD" | docker login $CI_REGISTRY -u $CI_REGISTRY_USER --password-stdin - echo "$CI_REGISTRY_PASSWORD" | docker login $CI_REGISTRY -u $CI_REGISTRY_USER --password-stdin
- docker build -t gitlab.futo.org:5050/videostreaming/fcast/receiver-electron-dev . - docker build -t $CI_REGISTRY/videostreaming/fcast/receiver-electron-dev:latest .
- docker push gitlab.futo.org:5050/videostreaming/fcast/receiver-electron-dev - docker push $CI_REGISTRY/videostreaming/fcast/receiver-electron-dev:latest
when: manual when: manual
buildMac: buildMac: