Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 64706045 authored by Thierry Martinez's avatar Thierry Martinez
Browse files

gitlab-ci

parent 0eb21f6c
No related branches found
No related tags found
No related merge requests found
Pipeline #549992 failed
stages: ["prepare", "build"]
prepare environment:
tags:
- linux
stage: prepare
image: docker
rules:
- changes:
- Dockerfile
script:
- docker build -t "$CI_REGISTRY_IMAGE/lazypp" .
- docker login -u gitlab-ci-token -p "$CI_JOB_TOKEN" "$CI_REGISTRY"
- docker push "$CI_REGISTRY_IMAGE/lazypp"
build:
tags:
- linux
stage: build
image: "$CI_REGISTRY_IMAGE/lazypp"
script:
- act
FROM ubuntu
COPY .actrc /root
RUN apt-get update && apt-get install --yes curl
RUN curl https://raw.githubusercontent.com/nektos/act/master/install.sh | bash
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment