diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2022-07-08 07:33:45 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-07-08 07:33:45 +0200 |
| commit | 28534cf1a8d692687d9f40c3be622e0945b5a2ee (patch) | |
| tree | fe2707c884cdd359232d5cca47fdd1aa0f4208dc /.github/workflows/build.yml | |
| parent | 8d9a469ae2c289d2fde46c64d6d6d37e27dc9520 (diff) | |
linux scipy/linalg libraries: ELF (#1714)
* do not strip any scipy library for linux
* apply settings to debug formats
* use fixed pyembroidery
Co-authored-by: Lex Neva
Diffstat (limited to '.github/workflows/build.yml')
| -rw-r--r-- | .github/workflows/build.yml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3610ec6b..b9663c4b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -74,7 +74,12 @@ jobs: python -m pip install -r requirements.txt python -m pip install pyinstaller - + + # scipy gives us a ELF error when stripped + sudo apt-get install gcc g++ gfortran python3-dev libopenblas-dev liblapack-dev + python -m pip uninstall --yes scipy + python -m pip install scipy --no-binary scipy + echo "${{ env.pythonLocation }}\bin" >> $GITHUB_PATH - shell: bash run: | |
