Skip to content

Commit

Permalink
🎙️ Non-interactive yum command invocation and user directory
Browse files Browse the repository at this point in the history
  • Loading branch information
agriyakhetarpal committed Jan 5, 2024
1 parent 64e74a2 commit bb67137
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -115,10 +115,11 @@ jobs:
env:
CIBW_ARCHS_LINUX: x86_64
CIBW_BEFORE_ALL_LINUX: >
yum install wget &&
yum install -y wget &&
wget https://golang.org/dl/go1.21.5.linux-amd64.tar.gz &&
rm -rf usr/local/go && tar -C usr/local -xzf go1.21.5.linux-amd64.tar.gz &&
export PATH="/usr/local/go/bin:$PATH" &&
rm -rf $HOME/.local/go/ &&
tar -C $HOME/.local/ -xzf go1.21.5.linux-amd64.tar.gz &&
export PATH="$HOME/.local/go/bin:$PATH" &&
go version
CIBW_REPAIR_WHEEL_COMMAND_LINUX: ''
CIBW_TEST_COMMAND: >
Expand Down

0 comments on commit bb67137

Please sign in to comment.