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

chore: finish merge steel poseidon #342

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
Open
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
4 changes: 3 additions & 1 deletion .github/.ghaignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,12 @@ oracles/pyth/anchor
# not building
compression/cutils/anchor
compression/cnft-vault/anchor
basics/favorites/native

# builds but need to test on localhost
compression/cnft-burn/anchor

# test failing
# build failing
# https://github.com/solana-developers/helpers/issues/40
tokens/escrow/anchor

Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/anchor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,10 @@ jobs:
failed_projects: ${{ steps.set-failed.outputs.failed_projects }}
steps:
- uses: actions/checkout@v4
- uses: heyAyushh/[email protected]
- uses: dtolnay/[email protected]
with:
components: rustfmt, clippy
- uses: heyAyushh/[email protected]
with:
anchor-version: 0.30.1
solana-cli-version: stable
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/poseidon.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,10 @@ jobs:
failed_projects: ${{ steps.set-failed.outputs.failed_projects }}
steps:
- uses: actions/checkout@v4
- uses: heyAyushh/[email protected]
- uses: dtolnay/[email protected]
with:
components: rustfmt, clippy
- uses: heyAyushh/[email protected]
with:
anchor-version: 0.30.1
solana-cli-version: stable
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,9 @@ jobs:

# This GitHub Action installs a Rust toolchain using rustup. It is designed for one-line concise usage and good defaults.
- name: Install the Rust toolchain
uses: dtolnay/rust-toolchain@stable
uses: dtolnay/[email protected]
with:
components: rustfmt, clippy

- name: Run tests
run: cargo test
Expand All @@ -43,8 +45,7 @@ jobs:
name: Rustfmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: dtolnay/[email protected]
with:
# Specific to dtolnay/rust-toolchain: Comma-separated string of additional components to install
components: rustfmt
Expand All @@ -57,7 +58,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: dtolnay/rust-toolchain@1.79.0
with:
components: clippy
- name: Linting
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/solana-native.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,9 @@ jobs:
failed_projects: ${{ steps.set-failed.outputs.failed_projects }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/[email protected]
with:
components: rustfmt, clippy
- name: Use Node.js
uses: actions/setup-node@v4
with:
Expand Down Expand Up @@ -180,7 +183,7 @@ jobs:
# Install pnpm
npm install --global pnpm
- name: Setup Solana stable
uses: heyAyushh/setup-solana@v5.5
uses: heyAyushh/setup-solana@v5.9
with:
solana-cli-version: stable
- name: Build and Test with Stable
Expand All @@ -190,7 +193,7 @@ jobs:
rustc -V
process_projects "stable"
- name: Setup Solana 1.18.17
uses: heyAyushh/setup-solana@v5.5
uses: heyAyushh/setup-solana@v5.9
with:
solana-cli-version: 1.18.17
- name: Build and Test with 1.18.17
Expand Down
11 changes: 7 additions & 4 deletions .github/workflows/steel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ jobs:
matrix: ${{ steps.matrix.outputs.matrix }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/[email protected]
with:
components: rustfmt, clippy
- uses: dorny/paths-filter@v3
id: changes
if: github.event_name == 'pull_request'
Expand Down Expand Up @@ -97,7 +100,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: dtolnay/rust-toolchain@1.79.0
with:
components: rustfmt, clippy
- name: Run sccache-cache
Expand Down Expand Up @@ -137,7 +140,7 @@ jobs:
failed_projects: ${{ steps.set-failed.outputs.failed_projects }}
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- uses: dtolnay/rust-toolchain@1.79.0
- name: Run sccache-cache
if: github.event_name != 'release'
uses: mozilla-actions/[email protected]
Expand Down Expand Up @@ -253,7 +256,7 @@ jobs:
chmod +x build_and_test.sh

- name: Setup Solana stable
uses: heyAyushh/setup-solana@v5.5
uses: heyAyushh/setup-solana@v5.9
with:
solana-cli-version: stable
- name: Build and Test with Stable
Expand All @@ -268,7 +271,7 @@ jobs:
process_projects "stable"
sccache --show-stats
- name: Setup Solana 1.18.17
uses: heyAyushh/setup-solana@v5.5
uses: heyAyushh/setup-solana@v5.9
with:
solana-cli-version: 1.18.17
- name: Build and Test with 1.18.17
Expand Down
Loading
Loading