15 lines
358 B
YAML
15 lines
358 B
YAML
|
|
before_install:
|
|
- sudo add-apt-repository --yes ppa:hansjorg/rust
|
|
- sudo add-apt-repository --yes ppa:cmrx64/cargo
|
|
- sudo apt-get update -qq
|
|
install:
|
|
- sudo apt-get install -qq rust-nightly cargo
|
|
- git clone https://github.com/sipa/secp256k1.git
|
|
- cd secp256k1
|
|
- ./configure && make && sudo make install
|
|
script:
|
|
- cargo build
|
|
- cargo test
|
|
|