Skip to content

Commit

Permalink
ci: more quiet when downloading
Browse files Browse the repository at this point in the history
  • Loading branch information
tesuji committed Jun 3, 2024
1 parent ff57e2e commit 3f17c4d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,10 @@ jobs:
- name: install just
run: |
set -x
# create ~/bin
mkdir -p ~/bin
curl --proto '=https' --tlsv1.2 -sSf https://just.systems/install.sh | bash -s -- --to ~/bin
export PATH="$PATH:$HOME/bin"
mkdir -p $HOME/bin
mkdir just && cd just
wget --quiet https://just.systems/install.sh
bash +x ./install.sh --to ~/bin
echo "$HOME/bin" >> $GITHUB_PATH
- name: Install bindgen
run: |
Expand All @@ -36,7 +36,7 @@ jobs:
URL_ROOT=https://github.com/rust-lang/rust-bindgen/releases/download/v0.69.4
BINDGEN_TAR=bindgen-cli-x86_64-unknown-linux-gnu.tar.xz
SHA256_FILE=${BINDGEN_TAR}.sha256
wget "$URL_ROOT/$BINDGEN_TAR" -O bindgen_cli.tar.xz
wget --quiet "$URL_ROOT/$BINDGEN_TAR" -O bindgen_cli.tar.xz
tar -xf ./bindgen_cli.tar.xz --strip-components=1
echo "$(pwd)" >> $GITHUB_PATH
shell: bash
Expand Down

0 comments on commit 3f17c4d

Please sign in to comment.