Skip to content

Commit 484ccd6

Browse files
committed
test: Revert Solana 2.3.0
1 parent 74bb0ac commit 484ccd6

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/no-caching-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
uses: ./.github/workflows/reusable-tests.yaml
1414
with:
1515
cache: false
16-
solana_cli_version: 2.3.0
16+
solana_cli_version: 2.1.0
1717
node_version: 20.18.0
1818
cargo_profile: release
1919
anchor_binary_name: anchor-binary-no-caching

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: ./.github/workflows/reusable-tests.yaml
1919
with:
2020
cache: true
21-
solana_cli_version: 2.3.0
21+
solana_cli_version: 2.1.0
2222
node_version: 20.18.0
2323
cargo_profile: debug
2424
anchor_binary_name: anchor-binary

docker/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Anchor version.
22
ANCHOR_CLI=v0.32.1
33
# Solana toolchain.
4-
SOLANA_CLI=v2.3.0
4+
SOLANA_CLI=v2.1.0
55
# Build version should match the Anchor cli version.
66
VERSIONED_IMG_NAME=solanafoundation/anchor:$(ANCHOR_CLI)
77

launch-test-validator.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Launches the test validator in the background, waiting for it to be ready
44
# If the validator is not ready and healthy after 5 retries, exit with failure
55

6-
set -o pipefail
6+
# set -o pipefail
77

88
solana-test-validator -r --quiet 2>&1 >/dev/null &
99
curl http://localhost:8899 \

setup-tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/bin/bash
22

33
active_version=$(solana -V | awk '{print $2}')
4-
if [ "$active_version" != "2.3.0" ]; then
5-
agave-install init 2.3.0
4+
if [ "$active_version" != "2.1.0" ]; then
5+
agave-install init 2.1.0
66
fi
77

88
git submodule update --init --recursive --depth 1

0 commit comments

Comments
 (0)