Skip to content
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
45 changes: 0 additions & 45 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,28 +111,6 @@ jobs:
- name: Test Programs
run: pnpm programs:test

generate_idls:
name: Check IDL Generation
runs-on: ubuntu-latest
needs: format_and_lint_programs
steps:
- name: Git Checkout
uses: actions/checkout@v4

- name: Setup Environment
uses: ./.github/actions/setup
with:
cargo-cache-key: cargo-programs
cargo-cache-local-key: cargo-local

- name: Generate IDLs
run: pnpm generate:idls

- name: Check Working Directory
run: |
git status --porcelain
test -z "$(git status --porcelain)"

generate_clients:
name: Check Client Generation
runs-on: ubuntu-latest
Expand Down Expand Up @@ -177,26 +155,3 @@ jobs:

- name: Test Client JS
run: pnpm clients:js:test

test_client_rust:
name: Test Client Rust
runs-on: ubuntu-latest
needs: build_programs
steps:
- name: Git Checkout
uses: actions/checkout@v4

- name: Setup Environment
uses: ./.github/actions/setup
with:
cargo-cache-key: cargo-rust-client
solana: true

- name: Restore Program Builds
uses: actions/cache/restore@v4
with:
path: ./**/*.so
key: ${{ runner.os }}-builds-${{ github.sha }}

- name: Test Client Rust
run: pnpm clients:rust:test
Loading