feat: Add close validator vault (#71) #301
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
env: | |
solana_version: v2.1.11 | |
jobs: | |
install: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
name: cache solana cli | |
id: cache-solana | |
with: | |
path: | | |
~/.cache/solana/ | |
~/.local/share/solana/ | |
key: solana-${{ runner.os }}-v0000-${{ env.solana_version }} | |
- name: install essentials | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y pkg-config build-essential libudev-dev | |
npm install --global yarn | |
- name: install rust | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
- name: Cache rust | |
uses: Swatinem/rust-cache@v2 | |
- name: install solana | |
if: steps.cache-solana.outputs.cache-hit != 'true' | |
run: | | |
sh -c "$(curl -sSfL https://release.anza.xyz/${{ env.solana_version }}/install)" | |
export PATH="$HOME/.local/share/solana/install/active_release/bin:$PATH" | |
solana --version | |
lint: | |
needs: install | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run fmt | |
run: cargo fmt -- --check | |
- name: Run clippy | |
run: cargo clippy -- --deny=warnings | |
test: | |
needs: [install, lint] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
name: cache solana cli | |
id: cache-solana | |
with: | |
path: | | |
~/.cache/solana/ | |
~/.local/share/solana/ | |
key: solana-${{ runner.os }}-v0000-${{ env.solana_version }} | |
- name: setup solana | |
run: | | |
export PATH="/home/runner/.local/share/solana/install/active_release/bin:$PATH" | |
solana --version | |
solana-keygen new --silent --no-bip39-passphrase | |
- name: run build | |
run: | | |
cargo build | |
- name: run tests | |
run: | | |
export PATH="/home/runner/.local/share/solana/install/active_release/bin:$PATH" | |
cargo test-sbf --features unit_test_config | |
- name: clean up before integration tests | |
run: | | |
rm -rf sdk/ts/node_modules | |
cp target/deploy/dlp.so /tmp/dlp.so | |
rm -rf target | |
mkdir -p target/deploy && cp /tmp/dlp.so target/deploy/dlp.so | |
rm -rf ~/.cache | |
rm -rf ~/.cargo/registry | |
df -h | |
- name: run integration tests | |
run: | | |
export PATH="/home/runner/.local/share/solana/install/active_release/bin:$PATH" | |
npm install -g @magicblock-labs/bolt-cli | |
cd sdk/ts && npm install --legacy-peer-deps && npm run build && npm run lint:fix && cd ../.. | |
cd tests/integration | |
npm install | |
bolt test |