mirror of
https://github.com/QwenLM/qwen-code.git
synced 2025-12-19 09:33:53 +00:00
* integrate terminal bench * fix ci * add ci * fix ci * fix ci * parallel ci * handle timeout * fix lint * trigger
15 lines
332 B
Django/Jinja
15 lines
332 B
Django/Jinja
#!/bin/bash
|
|
set -x
|
|
apt-get update
|
|
apt-get install -y curl
|
|
|
|
# Install npm, nvm, and node (using same pattern as Claude Code)
|
|
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.2/install.sh | bash
|
|
source "$HOME/.nvm/nvm.sh"
|
|
nvm install 22
|
|
npm -v
|
|
|
|
# Install Qwen Code
|
|
npm install -g @qwen-code/qwen-code@{{ version }}
|
|
|
|
qwen -v |