mirror of
https://github.com/Qortal/pirate-librustzcash.git
synced 2025-02-11 17:55:46 +00:00
3870f11 Bump version and ff dependency e8657fa Merge pull request #108 from kigawas/fix-rngcore-sized 7fddfc7 Update Cargo.toml df0217c bump group version cbc1917 bump version 98133d9 fix RngCore Sized 583c744 pairing 0.15.0 0de7279 Fix pairing benchmarks dd2fbb3 Crate docs 97c45f2 Update READMEs 9aef129 CI: Check intra-doc links f552b49 Add READMEs to Cargo.toml files 8c59b4a cargo fmt 33993f4 cargo fix --edition-idioms for pairing 36788f3 Add edition = 2018 df88a3f cargo fmt d9a1288 cargo fix --edition for pairing 013fd03 cargo fmt pairing 5635612 Fix clippy linter errors in pairing crate ba40e2f Use modern clippy linter syntax fa4eaeb Migrate to rand 0.7 1d00588 Migrate ff, group, pairing, and bellman to rand 0.6 95a749b Migrate pairing to rand 0.5 01e7212 Add ff and group crates to Cargo workspace git-subtree-dir: pairing git-subtree-split: 3870f1172f33aa85c49426fec6c6e7040b4889f9
67 lines
1.5 KiB
YAML
67 lines
1.5 KiB
YAML
|
|
# /************************************************************************
|
|
# File: .gitlab-ci.yml
|
|
# Author: mdr0id
|
|
# Date: 9/10/2018
|
|
# Description: Used to setup runners/jobs for librustzcash
|
|
# Usage: Commit source and the pipeline will trigger the according jobs.
|
|
# For now the build and test are done in the same jobs.
|
|
#
|
|
# Known bugs/missing features:
|
|
#
|
|
# ************************************************************************/
|
|
|
|
stages:
|
|
- build
|
|
- test
|
|
- deploy
|
|
|
|
rust-latest:
|
|
stage: build
|
|
image: rust:latest
|
|
script:
|
|
- cargo --verbose --version
|
|
- time cargo build --verbose
|
|
|
|
rust-nightly:
|
|
stage: build
|
|
image: rustlang/rust:nightly
|
|
script:
|
|
- cargo --verbose --version
|
|
- cargo build --verbose
|
|
allow_failure: true
|
|
|
|
librustzcash-test-latest:
|
|
stage: test
|
|
image: rust:latest
|
|
script:
|
|
- cargo --verbose --version
|
|
- time cargo test --release --verbose
|
|
|
|
librustzcash-test-rust-nightly:
|
|
stage: test
|
|
image: rustlang/rust:nightly
|
|
script:
|
|
- cargo --verbose --version
|
|
- cargo test --release --verbose
|
|
allow_failure: true
|
|
|
|
#used to manually deploy a given release
|
|
librustzcash-rust-rc:
|
|
stage: deploy
|
|
image: rust:latest
|
|
script:
|
|
- cargo --verbose --version
|
|
- time cargo build --release --verbose
|
|
when: manual
|
|
|
|
#used to manually deploy a given release
|
|
librustzcash-rust-nightly-rc:
|
|
stage: deploy
|
|
image: rustlang/rust:nightly
|
|
script:
|
|
- cargo --verbose --version
|
|
- cargo build --release --verbose
|
|
allow_failure: true
|
|
when: manual
|