Skip to content

Commit

Permalink
CI: Re-enable downstream jobs (#4495)
Browse files Browse the repository at this point in the history
#### Problem

The downstream SPL jobs were disabled due to a new error caught by Rust
1.84. All of the program repos have been updated to mark their public
test modules as `pub(crate)`:

* record: solana-program/record#18
* libraries: solana-program/libraries#22
* token-2022: solana-program/token-2022#80

#### Summary of changes

Re-enable the tests! Also, run the downstream jobs when
rust-toolchain.toml is modified.
  • Loading branch information
joncinque authored Jan 16, 2025
1 parent 583beac commit 9e831dc
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/downstream-project-spl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ on:
- v[0-9]+.[0-9]+
paths:
- "**.rs"
- "rust-toolchain.toml"
- "Cargo.toml"
- "Cargo.lock"
- "cargo-build-sbf"
Expand All @@ -37,8 +38,7 @@ env:

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

0 comments on commit 9e831dc

Please sign in to comment.