
* add appveyor, travis, remove libsnark as default, add push to gh * fix appveyor * change appveyor to nightly * use cargo for build job * change to build everywhere * update token, reduce targets * add more targets * add on liner script * remove rustc dep * add need_cmd * add check cmd * simple brackets * use check_cmd for curl * copy stdlib to OUT_DIR * ship stdlib in archive * install stdlib, give PATH hints after build script * clean * comment * scripts: ensure one-liner install script works with FreeBSD * remove appveyor for now * clean, remove windows, remove appveyor, remove travis test * put back cross install * fix stdlib test generation * disable tests in travis * restore test script to prevent tests to run.. * change scripts to keep same behaviour now that libsnark is disabled by default * update docs with installer * change docker to dockerhub * change repo
71 lines
1.8 KiB
YAML
71 lines
1.8 KiB
YAML
# Based on the "trust" template v0.1.2
|
|
# https://github.com/japaric/trust/tree/v0.1.2
|
|
|
|
dist: trusty
|
|
language: rust
|
|
rust:
|
|
- nightly
|
|
services: docker
|
|
sudo: required
|
|
|
|
env:
|
|
global:
|
|
- CRATE_NAME=zokrates
|
|
|
|
matrix:
|
|
include:
|
|
# Linux
|
|
- env: TARGET=aarch64-unknown-linux-gnu
|
|
- env: TARGET=arm-unknown-linux-gnueabi
|
|
- env: TARGET=i686-unknown-linux-gnu
|
|
- env: TARGET=x86_64-unknown-linux-gnu
|
|
|
|
# OSX
|
|
- env: TARGET=i686-apple-darwin
|
|
os: osx
|
|
- env: TARGET=x86_64-apple-darwin
|
|
os: osx
|
|
|
|
# *BSD
|
|
- env: TARGET=x86_64-unknown-freebsd
|
|
|
|
before_install:
|
|
- set -e
|
|
- rustup self update
|
|
|
|
install:
|
|
- sh ci/install.sh
|
|
- source ~/.cargo/env || true
|
|
|
|
script:
|
|
- bash ci/script.sh
|
|
|
|
after_script: set +e
|
|
|
|
before_deploy:
|
|
- sh ci/before_deploy.sh
|
|
|
|
deploy:
|
|
api_key:
|
|
secure: bJV3yFnt19nv2mc+0ekX6y6qfrq1mPCo+RZaPfY+KaUNJCposqIlvwZ0+TZIzKNNqrvC+oUyt8/jWU2A/hy1oFTkZmdtdcGkKYkm1C9v62ntOK6xv88qsZ4lz0Q6qKGoa7Ao3MZ9zomDl9WV+IESnPlnE5mCqw0sW1YF+pabZIojHPJyjspsKmcRADpPCSm9Qbotq521Q8+vGcfCLSlVOpGTMfG4MwB2K8FRV9m/wVaFjbKHg97rVMj1RKwtCDt0UNYTUhtfQ0jKqFGnQBxMKGhuvcoWQfjjcAcBGcBPfhXMXhOHEdbxrsdgpj/AJ4UTZlU15iTZ9wZlkSvBx4ttN2I0QEGt8UbzcXyG2JWkNBdKMAecQQU2g+UoAzLWFahzVgxrTfxiTQ8l9ax2hnY4xy+Qh4sMMWg1on1n0iHfIc4co5T0hNeCwXm8tcFIUtbE3FC92r5l23jom8EpQkDR3KnNt22wOqYOXH5yre2ZCi29phK3JkoXBfJfs1A8PQKXw/CiIfpPTQWYR2A6C2eQ27zia2sowzA4RUbplP1CAnCZrhjcNhU2R2DlgklDUkqwmaSetCQ1ZaWzXI6mUs/VJLpMbWKcX5kRT1C+ZhC0ZBbGrxrIPKWEdZHseE5uHNXFWxxvh5QrdpmULpeFL5wnXyWnrDOMpnkZx60w6VUHfbM=
|
|
file_glob: true
|
|
file: $CRATE_NAME-$TRAVIS_TAG-$TARGET.*
|
|
on:
|
|
tags: true
|
|
provider: releases
|
|
skip_cleanup: true
|
|
|
|
cache: cargo
|
|
before_cache:
|
|
# Travis can't cache files that are not readable by "others"
|
|
- chmod -R a+r $HOME/.cargo
|
|
|
|
branches:
|
|
only:
|
|
# release tags
|
|
- /^\d+\.\d+\.\d+.*$/
|
|
- master
|
|
|
|
notifications:
|
|
email:
|
|
on_success: never
|