Skip to content

Commit

Permalink
Bump platform tools version to 1.44 (#90)
Browse files Browse the repository at this point in the history
* Bump platform tools version

* Update upload artifact version
  • Loading branch information
LucasSte authored Feb 7, 2025
1 parent 0b59036 commit e40cded
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit e40cded

Please sign in to comment.