From 728887b4325a8817cef9cae821092f4e1f7c80a3 Mon Sep 17 00:00:00 2001 From: Faerbit Date: Tue, 27 Sep 2022 19:44:47 +0200 Subject: [PATCH] [ci] Do not strip, when packaging with pyinstaller, because it leads to segfaults --- .gitlab-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index f5c1105..a98126c 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -36,7 +36,7 @@ package_linux: - pipenv sync --dev script: - pipenv run python -m build -w - - pipenv run pyinstaller --onefile --strip --name "${LINUX_AMD64_BINARY}" src/fime/main.py + - pipenv run pyinstaller --onefile --name "${LINUX_AMD64_BINARY}" src/fime/main.py artifacts: paths: - dist/*.whl