Skip to content

Commit

Permalink
ci: benchmark: Fix installation of gdu
Browse files Browse the repository at this point in the history
  • Loading branch information
KSXGitHub committed May 30, 2021
1 parent c710290 commit c5b29a4
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -566,12 +566,11 @@ jobs:
VERSION: '5.0.0'
run: |
mkdir -p GDU.tmp
archive_name="dua-v${VERSION}-x86_64-unknown-linux-musl"
curl -L "${REPO}/releases/download/v${VERSION}/gdu_linux_amd64.tgz" > tmp.gdu.tar.gz
tar xf tmp.dua.tar.gz --directory=GDU.tmp
mkdir -p GDU.tmp/bin
chmod +x "GDU.tmp/${archive_name}"
ln -s "$(pwd)/GDU.tmp/${archive_name}" GDU.tmp/bin/gdu
chmod +x GDU.tmp/gdu_linux_amd64
ln -s "$(pwd)/GDU.tmp/gdu_linux_amd64" GDU.tmp/bin/gdu
echo "$(pwd)/GDU.tmp/bin" >> "$GITHUB_PATH"
- name: Install hyperfine
Expand Down

0 comments on commit c5b29a4

Please sign in to comment.