Skip to content

Commit

Permalink
changes to python version in cicd
Browse files Browse the repository at this point in the history
  • Loading branch information
rishabhpoddar committed Oct 25, 2024
1 parent 4e9e52d commit d52a6c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ jobs:
command: wget https://go.dev/dl/go1.21.3.linux-amd64.tar.gz && rm -rf /usr/local/go && tar -C /usr/local -xzf go1.21.3.linux-amd64.tar.gz && export PATH=$PATH:/usr/local/go/bin
no_output_timeout: 30m
- run: apt-get update
- run: apt-get install -y python3.7-dev python3.7-venv || true
- run: apt-get install -y python3.8-dev python3.8-venv || true
- run: apt -y --fix-broken install
- run: pip3 install virtualenv
- run: cd v2/src/plugins/codeTypeChecking/pythonEnv/ && python3.7 -m virtualenv ./venv && source venv/bin/activate && pip install -r ./requirements.txt
- run: cd v2/src/plugins/codeTypeChecking/pythonEnv/ && python3.8 -m virtualenv ./venv && source venv/bin/activate && pip install -r ./requirements.txt
- run:
name: Setup Dart Env
command: cd v2/src/plugins/codeTypeChecking/dart_env && export PATH="$PATH:/root/flutter/bin" && flutter pub get
Expand Down

0 comments on commit d52a6c7

Please sign in to comment.