Skip to content

Commit 5bc343f

Browse files
authored
Try fixing virustotal false positives + BUILD
1 parent f78d8f7 commit 5bc343f

1 file changed

Lines changed: 3 additions & 10 deletions

File tree

.github/workflows/build.yml

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
fail-fast: false
1515
matrix:
1616
config:
17-
- { os: "windows-2019", python: "3.11.1", cx-freeze: "latest" } # 3.11 cx_Freeze not yet stable, requires latest betas
17+
- { os: "windows-2019", python: "3.11.1", cx-freeze: "main" } # 3.11 cx_Freeze not yet stable, requires latest source
1818
- { os: "ubuntu-20.04", python: "3.11.1", cx-freeze: "6.13.1" }
1919
- { os: "macos-11", python: "3.10.9", cx-freeze: "6.13.1" } # cx_Freeze breaks runtime on 3.11, latest betas don't help
2020
name: "${{ matrix.config.os }}"
@@ -35,15 +35,8 @@ jobs:
3535
python-version: "${{ matrix.config.python }}"
3636

3737
- name: "Setup cx_Freeze"
38-
shell: "bash"
39-
run: |
40-
if [[ "${{ matrix.config.cx-freeze }}" = "latest" ]]; then
41-
python -m pip install --pre -f https://lief.s3-website.fr-par.scw.cloud/latest/lief/ lief || true
42-
python -m pip install --pre --extra-index-url https://marcelotduarte.github.io/packages/ cx_Logging || true
43-
python -m pip install --pre --extra-index-url https://marcelotduarte.github.io/packages/ cx_Freeze
44-
else
45-
python -m pip install -U 'git+https://github.com/marcelotduarte/cx_Freeze.git@${{ matrix.config.cx-freeze }}'
46-
fi
38+
run: |
39+
python -m pip install -U 'git+https://github.com/marcelotduarte/cx_Freeze.git@${{ matrix.config.cx-freeze }}'
4740
4841
# === BUILD ===
4942

0 commit comments

Comments
 (0)