Skip to content

Commit

Permalink
Fix install-from-binstall-release.sh for Git Bash users on Windows (#…
Browse files Browse the repository at this point in the history
…1562)

* Update install-from-binstall-release.sh

* Update install-from-binstall-release.sh

* Update install-from-binstall-release.sh

Co-authored-by: Jiahao XU <[email protected]>

* Update install-from-binstall-release.sh

Co-authored-by: Jiahao XU <[email protected]>

* Update install-script.yml

* Update install-from-binstall-release.sh

* Update install-script.yml

---------

Co-authored-by: Jiahao XU <[email protected]>
  • Loading branch information
jcbhmr and NobodyXu authored Jan 13, 2024
1 parent 7222a82 commit b415b0d
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/install-script.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,3 +82,33 @@ jobs:

- name: Verify `cargo-binstall` installation
run: cargo binstall -vV

windows-bash:
strategy:
fail-fast: false
matrix:
set_cargo_home: [t, f]

runs-on: windows-latest

steps:
- uses: actions/checkout@v4

- name: Set `CARGO_HOME`
if: matrix.set_cargo_home == 't'
shell: bash
run: |
CARGO_HOME="$(mktemp -d 2>/dev/null || mktemp -d -t 'cargo-home')"
mkdir -p "${CARGO_HOME}/bin"
echo "CARGO_HOME=$CARGO_HOME" >> "$GITHUB_ENV"
echo "${CARGO_HOME}/bin" >> $GITHUB_PATH
- name: Install `cargo-binstall` using scripts
shell: bash
run: ./install-from-binstall-release.sh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

- name: Verify `cargo-binstall` installation
shell: bash
run: cargo binstall -vV
6 changes: 6 additions & 0 deletions install-from-binstall-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,12 @@ elif [ "$os" == "Linux" ]; then

url="${base_url}${target}.tgz"
curl -L --proto '=https' --tlsv1.2 -sSf "$url" | tar -xvzf -
elif [ "${OS-}" = "Windows_NT" ]; then
machine="$(uname -m)"
target="${machine}-pc-windows-msvc"
url="${base_url}${target}.zip"
curl -LO --proto '=https' --tlsv1.2 -sSf "$url"
unzip "cargo-binstall-${target}.zip"
else
echo "Unsupported OS ${os}"
exit 1
Expand Down

0 comments on commit b415b0d

Please sign in to comment.