summaryrefslogtreecommitdiffstats
path: root/.github/workflows
diff options
context:
space:
mode:
authorLibravatarDaniel Baumann <daniel@debian.org>2025-02-17 07:42:36 +0100
committerLibravatarDaniel Baumann <daniel@debian.org>2025-02-17 07:42:36 +0100
commit8767bd80730485eb43a5e837cb4c1936b43f89ce (patch)
tree7d84acb9870f1b9b5bc7b9063114ec9ce4dc06ae /.github/workflows
parent1d7b9e81937ab97d99b88ef4396ed4a04d5b8b02 (diff)
Adding upstream version 2.1.2~dev0+20231127.
Signed-off-by: Daniel Baumann <daniel@debian.org>
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/cd.yml11
-rw-r--r--.github/workflows/ci.yml4
2 files changed, 8 insertions, 7 deletions
diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml
index 8a99733..8ef9010 100644
--- a/.github/workflows/cd.yml
+++ b/.github/workflows/cd.yml
@@ -84,12 +84,13 @@ jobs:
run: |
pyinstaller --clean delugewin.spec --distpath freeze
- - name: Fix OpenSSL for libtorrent x64
- if: ${{ matrix.arch == 'x64' }}
- working-directory: packaging/win/freeze/Deluge
+ - name: Verify Deluge exes
+ working-directory: packaging/win/freeze/Deluge/
run: |
- cp libssl-1_1.dll libssl-1_1-x64.dll
- cp libcrypto-1_1.dll libcrypto-1_1-x64.dll
+ deluge-debug.exe -v
+ deluged-debug.exe -v
+ deluge-web-debug.exe -v
+ deluge-console -v
- name: Make Deluge Installer
working-directory: ./packaging/win
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 6fc6b5b..1f0675c 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -37,7 +37,7 @@ jobs:
- name: Install dependencies
run: |
pip install --upgrade pip wheel setuptools
- pip install -r requirements.txt -r requirements-tests.txt
+ pip install -r requirements-ci.txt
pip install -e .
- name: Install security dependencies
@@ -92,7 +92,7 @@ jobs:
- name: Install dependencies
run: |
pip install --upgrade pip wheel setuptools
- pip install -r requirements.txt -r requirements-tests.txt
+ pip install -r requirements-ci.txt
pip install -e .
- name: Test with pytest