rebacs/.gitlab-ci.yml

37 lines
776 B
YAML
Raw Normal View History

2023-06-09 11:55:46 +02:00
variables:
DOCKER_TLS_CERTDIR: ""
DOCKER_HOST: tcp://docker:2375
services:
- name: docker:dind
entrypoint: ["dockerd-entrypoint.sh", "--tls=false"]
stages:
- build
- pack
cargo-build:
stage: build
image: rust:slim-bookworm
before_script:
- apt update && apt install protobuf-compiler -y
2023-06-09 12:03:38 +02:00
- rustup toolchain install nightly
- rustup default nightly
2023-06-09 11:55:46 +02:00
script:
- cargo build --release
artifacts:
paths:
- target/release/rebacs
docker:
stage: pack
image: docker:latest
only:
- master
script:
- docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
- docker build --network host -t $CI_REGISTRY_IMAGE/master . -f Dockerfile
- docker push $CI_REGISTRY_IMAGE/master
dependencies:
- cargo-build