anchor/.travis.yml

68 lines
2.4 KiB
YAML
Raw Normal View History

2021-01-06 12:04:44 -08:00
dist: bionic
2021-01-06 11:52:09 -08:00
language: rust
2021-03-27 10:09:03 -07:00
rust: nightly-2021-03-25
cache: cargo
2021-01-06 11:52:09 -08:00
env:
- NODE_VERSION="14.7.0"
_defaults: &defaults
before_install:
- rustup component add rustfmt
- nvm install $NODE_VERSION
2021-01-30 06:45:24 -08:00
- sudo apt-get install -y pkg-config build-essential libudev-dev
2021-01-06 11:52:09 -08:00
2021-01-06 12:04:44 -08:00
_examples: &examples
before_install:
- nvm install $NODE_VERSION
- npm install -g mocha
2021-03-01 01:25:59 -08:00
- npm install -g ts-mocha
- npm install -g typescript
2021-01-06 12:04:44 -08:00
- npm install -g @project-serum/anchor
2021-01-15 19:16:17 -08:00
- npm install -g @project-serum/serum
- npm install -g @project-serum/common
- npm install -g @solana/spl-token
2021-01-06 12:04:44 -08:00
- sudo apt-get install -y pkg-config build-essential libudev-dev
2021-04-04 00:55:56 -07:00
- sh -c "$(curl -sSfL https://release.solana.com/v1.6.3/install)"
2021-01-06 12:04:44 -08:00
- export PATH="/home/travis/.local/share/solana/install/active_release/bin:$PATH"
- export NODE_PATH="/home/travis/.nvm/versions/node/v$NODE_VERSION/lib/node_modules/:$NODE_PATH"
- yes | solana-keygen new
2021-01-09 22:03:14 -08:00
- cargo install --git https://github.com/project-serum/anchor anchor-cli --locked
2021-01-06 12:04:44 -08:00
2021-01-06 11:52:09 -08:00
jobs:
include:
- <<: *defaults
2021-01-06 12:04:44 -08:00
name: Build and test Rust
2021-01-06 11:52:09 -08:00
script:
- cargo build
- cargo fmt -- --check
- cargo test
- <<: *defaults
2021-01-06 12:04:44 -08:00
name: Build and test TypeScript
2021-01-06 11:52:09 -08:00
script:
- cd ts
- yarn
- yarn build
2021-01-06 12:04:44 -08:00
- <<: *examples
name: Runs the examples 1
2021-01-06 12:04:44 -08:00
script:
- pushd client/example && ./run-test.sh && popd
2021-01-11 09:22:25 -08:00
- pushd examples/sysvars && anchor test && popd
2021-01-14 22:35:50 -08:00
- pushd examples/composite && anchor test && popd
2021-01-20 17:13:02 -08:00
- pushd examples/errors && anchor test && popd
2021-01-15 19:16:17 -08:00
- pushd examples/spl/token-proxy && anchor test && popd
2021-02-01 06:33:29 -08:00
- pushd examples/multisig && anchor test && popd
2021-02-07 07:45:10 -08:00
- pushd examples/interface && anchor test && popd
2021-02-09 07:40:10 -08:00
- pushd examples/lockup && anchor test && popd
2021-02-12 01:09:27 -08:00
- pushd examples/misc && anchor test && popd
2021-03-24 20:19:29 -07:00
- pushd examples/events && anchor test && popd
2021-02-12 08:50:20 -08:00
- pushd examples/cashiers-check && anchor test && popd
- pushd examples/typescript && yarn && anchor test && popd
- <<: *examples
name: Runs the examples 2
script:
2021-01-06 12:04:44 -08:00
- pushd examples/tutorial/basic-0 && anchor test && popd
- pushd examples/tutorial/basic-1 && anchor test && popd
- pushd examples/tutorial/basic-2 && anchor test && popd
2021-01-14 15:21:51 -08:00
- pushd examples/tutorial/basic-3 && anchor test && popd
2021-01-22 06:16:48 -08:00
- pushd examples/tutorial/basic-4 && anchor test && popd