|
@@ -252,11 +252,11 @@ jobs:
|
|
|
# Make the script executable
|
|
|
chmod +x build_and_test.sh
|
|
|
|
|
|
- - name: Setup Solana stable
|
|
|
+ - name: Setup Solana Beta
|
|
|
uses: heyAyushh/setup-solana@v5.5
|
|
|
with:
|
|
|
- solana-cli-version: stable
|
|
|
- - name: Build and Test with Stable
|
|
|
+ solana-cli-version: beta
|
|
|
+ - name: Build and Test with Beta
|
|
|
env:
|
|
|
SCCACHE_GHA_ENABLED: "true"
|
|
|
RUSTC_WRAPPER: "sccache"
|
|
@@ -265,13 +265,13 @@ jobs:
|
|
|
solana -V
|
|
|
rustc -V
|
|
|
solana-keygen new --no-bip39-passphrase
|
|
|
- process_projects "stable"
|
|
|
+ process_projects "beta"
|
|
|
sccache --show-stats
|
|
|
- - name: Setup Solana 1.18.17
|
|
|
+ - name: Setup Solana Stable
|
|
|
uses: heyAyushh/setup-solana@v5.5
|
|
|
with:
|
|
|
- solana-cli-version: 1.18.17
|
|
|
- - name: Build and Test with 1.18.17
|
|
|
+ solana-cli-version: stable
|
|
|
+ - name: Build and Test with Stable
|
|
|
env:
|
|
|
SCCACHE_GHA_ENABLED: "true"
|
|
|
RUSTC_WRAPPER: "sccache"
|
|
@@ -280,7 +280,7 @@ jobs:
|
|
|
solana -V
|
|
|
rustc -V
|
|
|
solana-keygen new --no-bip39-passphrase --force
|
|
|
- process_projects "1.18.17"
|
|
|
+ process_projects "stable"
|
|
|
sccache --show-stats
|
|
|
|
|
|
- name: Set failed projects output
|