-
Notifications
You must be signed in to change notification settings - Fork 0
/
Taskfile.yaml
33 lines (32 loc) · 1 KB
/
Taskfile.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
version: 3
tasks:
regenerate-requirements-txt-1.1:
cmd: |
cd src/fabric-runtime/1.1/.devcontainer
docker run --rm -v .:/mnt mcr.microsoft.com/devcontainers/python:1-3.10-bullseye bash -c "
cd /mnt
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
pip-compile
"
regenerate-requirements-txt-1.2:
cmd: |
cd src/fabric-runtime/1.2/.devcontainer
docker run --rm -v .:/mnt mcr.microsoft.com/devcontainers/python:1-3.10-bullseye bash -c "
cd /mnt
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
pip-compile
"
regenerate-requirements-txt-1.3:
cmd: |
cd src/fabric-runtime/1.3/.devcontainer
docker run --rm -v .:/mnt mcr.microsoft.com/devcontainers/python:1-3.11-bullseye bash -c "
cd /mnt
python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
pip-compile
"