Skip to content

Commit

Permalink
CI: Disable downstream SPL jobs (#4489)
Browse files Browse the repository at this point in the history
#### Problem

The downstream SPL jobs are failing CI due to missing documentation on a
public module for the tests. This is likely due to the upgrade to Rust
1.84, and these modules need to be labeled as `pub(crate)`.

#### Summary of changes

To unblock CI, just disable the tests.
  • Loading branch information
joncinque authored Jan 16, 2025
1 parent 950d496 commit a02af0b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/downstream-project-spl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ env:

jobs:
check:
if: github.repository == 'anza-xyz/agave'
#if: github.repository == 'anza-xyz/agave'
if: false
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -74,7 +75,8 @@ jobs:
cargo check
test_cli:
if: github.repository == 'anza-xyz/agave'
#if: github.repository == 'anza-xyz/agave'
if: false
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down Expand Up @@ -103,7 +105,8 @@ jobs:
cargo test --manifest-path clients/cli/Cargo.toml
cargo-test-sbf:
if: github.repository == 'anza-xyz/agave'
#if: github.repository == 'anza-xyz/agave'
if: false
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down

0 comments on commit a02af0b

Please sign in to comment.