This repository was archived by the owner on Jul 16, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 11 files changed +9
-74
lines changed
Expand file tree Collapse file tree 11 files changed +9
-74
lines changed Original file line number Diff line number Diff line change 2525 rm $(ls | grep wrapt) && pip download wrapt --platform=universal2 --only-binary=:all: && pip install $(ls | grep wrapt) --force-reinstall && cd .. &&
2626 pip install --no-deps --no-index --find-links=pip-packages pip-packages/*
2727 CMD_BUILD : >
28- STATICCODECOV_LIB_PATH=$(find build/ -maxdepth 1 -type d -name 'lib.*' -print -quit | xargs -I {} sh -c "find {} -type f -name 'staticcodecov*' -print -quit | sed 's|^./||'") &&
29- pyinstaller --add-binary ${STATICCODECOV_LIB_PATH}:. --copy-metadata codecov-cli --hidden-import staticcodecov_languages --target-arch universal2 -F codecov_cli/main.py &&
28+ pyinstaller --copy-metadata codecov-cli --target-arch universal2 -F codecov_cli/main.py &&
3029 mv dist/main dist/codecovcli_macos &&
3130 lipo -archs dist/codecovcli_macos | grep 'x86_64 arm64'
3231 OUT_FILE_NAME : codecovcli_macos
3635 CMD_REQS : >
3736 pip install -r requirements.txt && pip install .
3837 CMD_BUILD : >
39- STATICCODECOV_LIB_PATH=$(find build/ -maxdepth 1 -type d -name 'lib.*' -print -quit | xargs -I {} sh -c "find {} -type f -name 'staticcodecov*' -print -quit | sed 's|^./||'") &&
40- pyinstaller --add-binary ${STATICCODECOV_LIB_PATH}:. --copy-metadata codecov-cli --hidden-import staticcodecov_languages -F codecov_cli/main.py &&
38+ pyinstaller --copy-metadata codecov-cli -F codecov_cli/main.py &&
4139 cp ./dist/main ./dist/codecovcli_linux
4240 OUT_FILE_NAME : codecovcli_linux
4341 ASSET_MIME : application/octet-stream
4644 CMD_REQS : >
4745 pip install -r requirements.txt && pip install .
4846 CMD_BUILD : >
49- pyinstaller --add-binary "build\lib.win-amd64-cpython-311\staticcodecov_languages.cp311-win_amd64.pyd;." -- copy-metadata codecov-cli --hidden-import staticcodecov_languages -F codecov_cli\main.py &&
47+ pyinstaller --copy-metadata codecov-cli -F codecov_cli\main.py &&
5048 Copy-Item -Path ".\dist\main.exe" -Destination ".\dist\codecovcli_windows.exe"
5149 OUT_FILE_NAME : codecovcli_windows.exe
5250 ASSET_MIME : application/vnd.microsoft.portable-executable
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 22import pathlib
33import typing
44
5- import sentry_sdk
6-
75import click
6+ import sentry_sdk
87
98from codecov_cli .fallbacks import CodecovOption , FallbackFieldEnum
109from codecov_cli .helpers .validators import validate_commit_sha
Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ dependencies = [
1919 " responses==0.21.*" ,
2020 " sentry-sdk>=2.20.0" ,
2121 " test-results-parser==0.5.4" ,
22- " tree-sitter==0.20.*" ,
2322 " wrapt>=1.17.2" ,
2423]
2524license = {file = " LICENSE" }
Original file line number Diff line number Diff line change 11#
2- # This file is autogenerated by pip-compile with Python 3.11
2+ # This file is autogenerated by pip-compile with Python 3.12
33# by the following command:
44#
55# pip-compile --all-build-deps --all-extras pyproject.toml
@@ -29,8 +29,6 @@ idna==3.10
2929 # requests
3030ijson == 3.3.0
3131 # via codecov-cli (pyproject.toml)
32- packaging == 24.2
33- # via setuptools-scm
3432pyyaml == 6.0.2
3533 # via codecov-cli (pyproject.toml)
3634regex == 2024.11.6
@@ -41,16 +39,12 @@ responses==0.21.0
4139 # via codecov-cli (pyproject.toml)
4240sentry-sdk == 2.20.0
4341 # via codecov-cli (pyproject.toml)
44- setuptools-scm == 8.1.0
45- # via codecov-cli (pyproject.toml::build-system.requires)
4642sniffio == 1.3.1
4743 # via
4844 # anyio
4945 # httpx
5046test-results-parser == 0.5.4
5147 # via codecov-cli (pyproject.toml)
52- tree-sitter == 0.20.4
53- # via codecov-cli (pyproject.toml)
5448typing-extensions == 4.12.2
5549 # via anyio
5650urllib3 == 2.3.0
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ apk add musl-dev build-base
33pip install -r requirements.txt
44pip install .
55python setup.py build
6- STATICCODECOV_LIB_PATH=$( find build/ -maxdepth 1 -type d -name ' lib.*' -print -quit | xargs -I {} sh -c " find {} -type f -name 'staticcodecov*' -print -quit | sed 's|^./||'" )
76pip install pyinstaller
8- pyinstaller --add-binary ${STATICCODECOV_LIB_PATH} :. -- copy-metadata codecov-cli --hidden-import staticcodecov_languages -F codecov_cli/main.py
7+ pyinstaller --copy-metadata codecov-cli -F codecov_cli/main.py
98cp ./dist/main ./dist/codecovcli_$1
Original file line number Diff line number Diff line change @@ -3,7 +3,6 @@ apt install build-essential
33pip install -r requirements.txt
44pip install .
55python setup.py build
6- STATICCODECOV_LIB_PATH=$( find build/ -maxdepth 1 -type d -name ' lib.*' -print -quit | xargs -I {} sh -c " find {} -type f -name 'staticcodecov*' -print -quit | sed 's|^./||'" )
76pip install pyinstaller
8- pyinstaller --add-binary ${STATICCODECOV_LIB_PATH} :. -- copy-metadata codecov-cli --hidden-import staticcodecov_languages -F codecov_cli/main.py
7+ pyinstaller --copy-metadata codecov-cli -F codecov_cli/main.py
98cp ./dist/main ./dist/codecovcli_$1
You can’t perform that action at this time.
0 commit comments