Update spl-memo to fix windows linking error#10986
Update spl-memo to fix windows linking error#10986ryoqun wants to merge 1 commit intosolana-labs:masterfrom
Conversation
|
btw, I've made updating a particular crate across the repository piece of cake: $ ./scripts/cargo-for-all-lock-files.sh --ignore-exit-code update -p spl-memo --precise 1.0.1
++ dirname Cargo.lock
+ cd .
+ cargo update -p spl-memo --precise 1.0.1
Updating crates.io index
Adding solana-sdk-bpf-test v1.2.4
Updating spl-memo v1.0.0 -> v1.0.1
++ dirname explorer/wasm/Cargo.lock
+ cd explorer/wasm
+ cargo update -p spl-memo --precise 1.0.1
error: package ID specification `spl-memo` matched no packages
./scripts/cargo-for-all-lock-files.sh: WARN: ignoring last cargo command failed exit code as requested: 101
++ dirname programs/bpf/Cargo.lock
+ cd programs/bpf
+ cargo update -p spl-memo --precise 1.0.1
error: package ID specification `spl-memo` matched no packages
./scripts/cargo-for-all-lock-files.sh: WARN: ignoring last cargo command failed exit code as requested: 101
++ dirname programs/librapay/Cargo.lock
+ cd programs/librapay
+ cargo update -p spl-memo --precise 1.0.1
error: package ID specification `spl-memo` matched no packages
./scripts/cargo-for-all-lock-files.sh: WARN: ignoring last cargo command failed exit code as requested: 101
++ dirname programs/move_loader/Cargo.lock
+ cd programs/move_loader
+ cargo update -p spl-memo --precise 1.0.1
error: package ID specification `spl-memo` matched no packages
./scripts/cargo-for-all-lock-files.sh: WARN: ignoring last cargo command failed exit code as requested: 101
|
|
automerge label removed due to a CI failure |
|
Oh, sad... Build failed on linux this time... ;) @jackcmay It seems that |
Yeah, it seems to be because of the two different versions of sdk and program-stubs (one in the crate, and an older dependency of spl-memo): https://discordapp.com/channels/428295358100013066/439194979856809985/728015602035327101 cc: #10986 |
|
Fixed in #11000 |
Problem
window build is broken, happening on
masterandv1.2: https://travis-ci.com/github/solana-labs/solana/jobs/359548827#L639Summary of Changes
Update
spl-memoI've confirmed windows now builds at the other pr(#10983 with this commit included.). :): https://travis-ci.com/github/solana-labs/solana/jobs/359595539#L600
Context #10983