This repository has been archived on 2024-02-13. You can view files and clone it, but cannot push or open issues or pull requests.
balena-elixir/.gitlab-ci.yml

23 lines
499 B
YAML
Raw Normal View History

2019-11-30 08:37:46 +13:00
image: docker:latest
services:
- docker:dind
variables:
2020-01-11 17:51:41 +13:00
DOCKER_HOST: tcp://docker:2375/
DOCKER_DRIVER: overlay
DOCKER_TLS_CERTDIR: ""
2019-11-30 08:37:46 +13:00
before_script:
- echo ${CI_BUILD_TOKEN} | docker login -u gitlab-ci-token --password-stdin ${CI_REGISTRY}
build-arm-platforms:
tags:
- arm
script: PLATFORMS="rpi armv7hf aarch64 raspberry-pi raspberry-pi2 raspberrypi3 raspberrypi3-64 raspberrypi4" ./build.sh
2019-11-30 08:37:46 +13:00
build-x86-platforms:
tags:
- x86
script: PLATFORMS="i386 amd64" ./build.sh