File: automation_init.sh

package info (click to toggle)
python-azure 20251014%2Bgit-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 766,472 kB
  • sloc: python: 6,314,744; ansic: 804; javascript: 287; makefile: 198; sh: 198; xml: 109
file content (19 lines) | stat: -rw-r--r-- 472 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/bash

# init env
python -m pip install -U pip > /dev/null
python scripts/dev_setup.py -p azure-core > /dev/null
pip install tox==4.15.0 > /dev/null
pip install wheel==0.43.0 > /dev/null
pip install setuptools==78.1.0 > /dev/null
pip install setuptools-scm==8.3.0 > /dev/null
pip install build==1.3.0 > /dev/null

# install tsp-client
echo Install tsp-client
cd eng/common/tsp-client
npm ci > /dev/null
cd ../../..

echo "{}" >> $2
echo "[Generate] init success!!!"