Skip to content
Snippets Groups Projects
Unverified Commit 72c93ab5 authored by gabriel klawitter's avatar gabriel klawitter Committed by GitHub
Browse files

Merge pull request #20 from paritytech/ci-add-gitlab

ci: add .gitlab-ci.yml
parents 20d11b0a 5fbb1fcf
Branches
Tags 0.15.3
No related merge requests found
Pipeline #51894 passed with stages
in 1 minute and 15 seconds
# .gitlab-ci.yml
# rust-secp256k1
stages:
- test
- build
image: parity/rust-builder:latest
variables:
GIT_STRATEGY: fetch
CARGO_HOME: "/ci-cache/${CI_PROJECT_NAME}/cargo/${CI_JOB_NAME}"
SCCACHE_DIR: "/ci-cache/${CI_PROJECT_NAME}/sccache"
CI_SERVER_NAME: "GitLab CI"
DOCKER_OS: "debian:stretch"
ARCH: "x86_64"
.docker-env: &docker-env
tags:
- linux-docker
.compiler_info: &compiler_info
before_script:
- rustup show
- cargo --version
- sccache -s
.build-refs: &build-refs
only:
- master
- schedules
- web
- /^v[0-9]+\.[0-9]+.*$/ # i.e. v1.0, v2.1rc1
.test-refs: &test-refs
only:
- master
- schedules
- web
- /^v[0-9]+\.[0-9]+.*$/ # i.e. v1.0, v2.1rc1
- /^[0-9]+$/
test-linux-stable: &test
stage: test
<<: *test-refs
<<: *docker-env
<<: *compiler_info
variables:
RUST_TOOLCHAIN: stable
RUSTFLAGS: -Cdebug-assertions=y
TARGET: native
script:
- time cargo test --all --release --verbose
- sccache -s
build-linux-release: &build
stage: build
<<: *build-refs
<<: *docker-env
<<: *compiler_info
script:
- time cargo build --release --verbose
- sccache -s
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment