| OLD | NEW |
| 1 package: infra/infra_python/${platform}-${os_ver} | 1 package: infra/infra_python/${platform}-${os_ver} |
| 2 description: Virtual environment + 'infra' package with infra.git python code. | 2 description: Virtual environment + 'infra' package with infra.git python code. |
| 3 root: ../../ | 3 root: ../../ |
| 4 uses_python_env: true |
| 5 go_packages: |
| 6 - infra/tools/cloudtail/cmd/cloudtail |
| 4 | 7 |
| 5 data: | 8 data: |
| 6 # Virtual environment with all third party packages. | 9 # Virtual environment with all third party packages. |
| 7 - dir: ENV | 10 - dir: ENV |
| 8 exclude: | 11 exclude: |
| 9 # Exclude unneeded and unrelocatable files. | 12 # Exclude unneeded and unrelocatable files. |
| 10 - .*\.pyc | 13 - .*\.pyc |
| 11 - .*/pip-.*-build/.* | 14 - .*/pip-.*-build/.* |
| 12 - bin/activate | 15 - bin/activate |
| 13 - bin/activate.csh | 16 - bin/activate.csh |
| (...skipping 27 matching lines...) Expand all Loading... |
| 41 - file: run.py | 44 - file: run.py |
| 42 - file: test.py | 45 - file: test.py |
| 43 - file: bootstrap/run_helper.py | 46 - file: bootstrap/run_helper.py |
| 44 - file: bootstrap/remove_orphaned_pycs.py | 47 - file: bootstrap/remove_orphaned_pycs.py |
| 45 | 48 |
| 46 # Binaries used by infra_python things. | 49 # Binaries used by infra_python things. |
| 47 - file: go/bin/cloudtail${exe_suffix} | 50 - file: go/bin/cloudtail${exe_suffix} |
| 48 | 51 |
| 49 # Where to put info about installed package version. | 52 # Where to put info about installed package version. |
| 50 - version_file: CIPD_VERSION.json | 53 - version_file: CIPD_VERSION.json |
| OLD | NEW |