Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Parsing Anchor IDL instead of creating our own #196

Merged
merged 1 commit into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/actions/setup-rust/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ runs:
run: |
rustup default nightly
rustup component add rustfmt clippy
rustup component add rustfmt clippy --toolchain nightly
shell: bash
- name: Install Cargo Expand
run: cargo install --locked cargo-expand
Expand Down
10 changes: 4 additions & 6 deletions .github/workflows/run_examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ on:
name: Test Escrow

env:
SOLANA_CLI_VERSION: 1.18.12
ANCHOR_VERSION: 0.29.0
SOLANA_CLI_VERSION: 1.18.18
ANCHOR_VERSION: 0.30.1

jobs:
test_escrow:
Expand All @@ -16,12 +16,10 @@ jobs:
- uses: ./.github/actions/setup-rust/
- uses: ./.github/actions/setup-solana/
- uses: ./.github/actions/setup-anchor/
- uses: ./.github/actions/setup-trident/
id: rust-setup
- uses: Swatinem/rust-cache@v2
name: Cache Rust and it's packages
- name: Build Escrow
working-directory: examples/integration-tests/escrow
run: anchor build
- name: Test Escrow
working-directory: examples/integration-tests/escrow
run: cargo run --manifest-path ../../../Cargo.toml test
run: trident test
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@ incremented upon a breaking change and the patch version will be incremented for

## [dev] - Unreleased

**Changed**
- impr/ instead of parsing source code and creating our IDL, read anchor IDL ([196](https://github.com/Ackee-Blockchain/trident/pull/196))

## [0.7.0] - 2024-08-14

**Added**
Expand Down
Loading
Loading