From 512709d5ed302bf405a6618aab8e90ae403cac5e Mon Sep 17 00:00:00 2001 From: Lucas Date: Thu, 6 Feb 2025 18:25:43 -0300 Subject: [PATCH 1/2] Bump platform tools version --- build.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build.sh b/build.sh index 59ac153..50edd71 100755 --- a/build.sh +++ b/build.sh @@ -34,10 +34,10 @@ rm -rf "${OUT_DIR}" mkdir -p "${OUT_DIR}" pushd "${OUT_DIR}" -git clone --single-branch --branch solana-tools-v1.43 --recurse-submodules --shallow-submodules https://github.com/anza-xyz/rust.git +git clone --single-branch --branch solana-tools-v1.44 --recurse-submodules --shallow-submodules https://github.com/anza-xyz/rust.git echo "$( cd rust && git rev-parse HEAD ) https://github.com/anza-xyz/rust.git" >> version.md -git clone --single-branch --branch solana-tools-v1.43 https://github.com/anza-xyz/cargo.git +git clone --single-branch --branch solana-tools-v1.44 https://github.com/anza-xyz/cargo.git echo "$( cd cargo && git rev-parse HEAD ) https://github.com/anza-xyz/cargo.git" >> version.md pushd rust @@ -57,7 +57,7 @@ fi popd if [[ "${HOST_TRIPLE}" != "x86_64-pc-windows-msvc" ]] ; then - git clone --single-branch --branch solana-tools-v1.43 https://github.com/anza-xyz/newlib.git + git clone --single-branch --branch solana-tools-v1.44 https://github.com/anza-xyz/newlib.git echo "$( cd newlib && git rev-parse HEAD ) https://github.com/anza-xyz/newlib.git" >> version.md mkdir -p newlib_build mkdir -p newlib_install From e9ddb5c667cae573eb1c8b365331d22d4302fe16 Mon Sep 17 00:00:00 2001 From: Lucas Date: Thu, 6 Feb 2025 18:30:49 -0300 Subject: [PATCH 2/2] Update upload artifact version --- .github/workflows/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3504947..4b2f6c4 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -89,12 +89,12 @@ jobs: run: ./build.sh ${{ matrix.out_dir }} shell: bash - name: Upload ${{ matrix.tar }} tarball - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: platform-tools-${{ matrix.tar }}-${{ matrix.arch }}.tar.bz2 path: platform-tools-${{ matrix.tar }}-${{ matrix.arch }}.tar.bz2 - name: Upload move-dev ${{ matrix.tar }} tarball - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: move-dev-${{ matrix.tar }}-${{ matrix.arch }}.tar.bz2 path: move-dev-${{ matrix.tar }}-${{ matrix.arch }}.tar.bz2