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

add gitlab ci

parent 61d83356
No related branches found
No related tags found
1 merge request!6add gitlab ci
# Official language image. Look for the different tagged releases at:
# https://hub.docker.com/r/library/rust/tags/
image: "rust:latest"
stages:
- build
build:
stage: build
# image used for this build
image: rust
# build script
script:
- cargo build --release
# output file
artifacts:
paths:
- target/release/gcli
# use cache to avoid re-downloading and re-building all dependencies
cache:
- key:
files:
- Cargo.lock
paths:
- target/release
# only build gcli when adding a tag
only:
- tags
\ No newline at end of file
...@@ -6,6 +6,8 @@ Using ...@@ -6,6 +6,8 @@ Using
- https://github.com/duniter/substrate - https://github.com/duniter/substrate
- https://github.com/duniter/subxt - https://github.com/duniter/subxt
Download from [release](https://git.duniter.org/clients/rust/gcli-v2s/-/releases) or build with `cargo build`.
## Usage ## Usage
If using a different runtime, update the metadata for the client to compile: If using a different runtime, update the metadata for the client to compile:
......
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