Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IOS-8118: Fix broken deps #42

Merged
merged 3 commits into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion swift-protobuf-version.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
version_tag=1.25.2

# Additional suffix for Tangem-specifc intermediate builds
tangem_suffix=tangem1
tangem_suffix=tangem2
m3g0byt3 marked this conversation as resolved.
Show resolved Hide resolved
2 changes: 1 addition & 1 deletion tools/install-dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ function build_swift_plugin() {
mkdir -p "$SWIFT_PROTOBUF_DIR"
cd "$SWIFT_PROTOBUF_DIR"
if [ ! -f $SWIFT_PROTOBUF_VERSION.tar.gz ]; then
curl -fSsOL https://github.com/apple/swift-protobuf/archive/$SWIFT_PROTOBUF_VERSION.tar.gz
curl -fSsOL https://github.com/apple/swift-protobuf/archive/refs/tags/$SWIFT_PROTOBUF_VERSION.tar.gz
m3g0byt3 marked this conversation as resolved.
Show resolved Hide resolved
fi
tar xzf $SWIFT_PROTOBUF_VERSION.tar.gz

Expand Down
2 changes: 1 addition & 1 deletion tools/install-rust-dependencies
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

set -e

NIGHTLY="nightly-2024-02-09"
NIGHTLY="nightly-2024-03-17" # Latest 1.78 nightly
m3g0byt3 marked this conversation as resolved.
Show resolved Hide resolved

rustup toolchain install $NIGHTLY
rustup default $NIGHTLY
Expand Down