Skip to content

Commit

Permalink
Upgrade Solana to 1.7.15
Browse files Browse the repository at this point in the history
  • Loading branch information
enriquefynn committed Dec 16, 2021
1 parent aa69436 commit 216ca10
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,14 @@ jobs:
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: build-1.7.8-v2-${{ hashFiles('Cargo.lock') }}
restore-keys: build-1.7.8-v2
key: build-1.7.15-v2-${{ hashFiles('Cargo.lock') }}
restore-keys: build-1.7.15-v2

- name: Install development tools
run: |
sudo apt update
sudo apt-get install -y libudev-dev
sh -c "$(curl -sSfL https://release.solana.com/v1.7.8/install)"
sh -c "$(curl -sSfL https://release.solana.com/v1.7.15/install)"
- name: Run unit tests
run: |
Expand Down Expand Up @@ -153,8 +153,8 @@ jobs:
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: lint-1.7.8-v1-${{ hashFiles('Cargo.lock') }}
restore-keys: lint-1.7.8-v1
key: lint-1.7.15-v1-${{ hashFiles('Cargo.lock') }}
restore-keys: lint-1.7.15-v1

- name: Install linters
run: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ jobs:
path: |
target
multisig/target
key: cargo-bpf-1.7.8-${{ hashFiles('Cargo.lock') }}
key: cargo-bpf-1.7.15-${{ hashFiles('Cargo.lock') }}
restore-keys: |
cargo-bpf-1.7.8
cargo-bpf-1.7.15
- name: Install dependencies
run: |
sudo apt update
sudo apt-get install -y libudev-dev
sh -c "$(curl -sSfL https://release.solana.com/v1.7.8/install)"
sh -c "$(curl -sSfL https://release.solana.com/v1.7.15/install)"
- name: Build on-chain BPF programs
run: |
Expand Down
2 changes: 1 addition & 1 deletion buildimage.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
VERSION=$(git rev-parse --short HEAD)
TAG="chorusone/solido:$VERSION"
BASETAG="chorusone/solido-base"
SOLIPATH="/root/.local/share/solana/install/releases/1.7.8/solana-release/bin/solido"
SOLIPATH="/root/.local/share/solana/install/releases/1.7.15/solana-release/bin/solido"


# 2. Build container image
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.dev
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM chorusone/solido-base

ENV SOLVERSION=1.7.8
ENV SOLVERSION=1.7.15
ENV SOLINSTALLCHECKSUM=33778e26b0b81133ba3bb4f9e46e84182f2adf72f0bc6e06fc59ad55ddd017d1
ENV SOLPATH="/root/.local/share/solana/install/active_release/bin"
ENV SOLIDOBUILDPATH="$SOLPATH/solido-build"
Expand Down

0 comments on commit 216ca10

Please sign in to comment.