Skip to content
Snippets Groups Projects
Commit f7237d69 authored by Hugo Trentesaux's avatar Hugo Trentesaux
Browse files

Update .gitlab-ci.yml file

parent 61d83356
No related branches found
No related tags found
1 merge request!6add gitlab ci
Pipeline #32210 passed
This commit is part of merge request !6. Comments created here will be created in the context of that merge request.
.gitlab-ci.yml 0 → 100644
# This file is adapted from GitLab template for Rust projects
# Official language image. Look for the different tagged releases at:
# https://hub.docker.com/r/library/rust/tags/
image: "rust:latest"
# Optional: Install a C compiler, cmake and git into the container.
# You will often need this when you (or any of your dependencies) depends on C code.
# before_script:
# - apt-get update -yqq
# - apt-get install -yqq --no-install-recommends build-essential
build:
stage: build
image: rust
script:
- cargo build --release
artifacts:
paths:
- target/release/gcli
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment