Skip to content

Commit

Permalink
ci: downgrade nvm and install from github
Browse files Browse the repository at this point in the history
Downgrading to nvm v0.39.7, see this issue:
- nvm-sh/nvm#3405

Homebrew installation is not supported, see:
- https://github.com/nvm-sh/nvm?tab=readme-ov-file#important-notes
  • Loading branch information
thisconnect committed Aug 19, 2024
1 parent a32daf3 commit f15252b
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions scripts/github-ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,10 @@ if [ "$OS_NAME" == "osx" ]; then
# this script.
go version
brew install qt@5
brew install nvm
source /usr/local/opt/nvm/nvm.sh
nvm install 20 # install this node version
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
export NVM_DIR="$HOME/.nvm"
source "$NVM_DIR/nvm.sh"
nvm install 20
export PATH="/usr/local/opt/qt@5/bin:$PATH"
export LDFLAGS="-L/usr/local/opt/qt@5/lib"
export CPPFLAGS="-I/usr/local/opt/qt@5/include"
Expand Down

0 comments on commit f15252b

Please sign in to comment.