Skip to content

Commit 0e389bc

Browse files
committed
Trying to compile cryptography
1 parent 941d77a commit 0e389bc

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

.github/workflows/build_python_deps_linux.yml

+11-3
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ jobs:
1212
matrix:
1313
libraries: [
1414

15-
#["https://files.pythonhosted.org/packages/78/63/66c03eb51f0d241862083deb3f17ab5fce08cf6b347db7887bcb4d1a194e/cryptography-42.0.7.tar.gz", "cryptography-42.0.7.tar.gz"],
15+
["https://files.pythonhosted.org/packages/78/63/66c03eb51f0d241862083deb3f17ab5fce08cf6b347db7887bcb4d1a194e/cryptography-42.0.7.tar.gz", "cryptography-42.0.7.tar.gz"],
1616
#["https://files.pythonhosted.org/packages/6b/b0/e595ce2a2527e169c3bcd6c33d2473c1918e0b7f6826a043ca1245dd4e5b/crcmod-1.7.tar.gz", "crcmod-1.7.tar.gz"],
1717
#["https://files.pythonhosted.org/packages/90/c7/6dc0a455d111f68ee43f27793971cf03fe29b6ef972042549db29eec39a2/psutil-5.9.8.tar.gz", "psutil-5.9.8.tar.gz"],
1818
#["https://files.pythonhosted.org/packages/0c/2a/23943e19b4bbbdad60a9d881e44cd53bb48b31c7419ebb7b983edfbbb708/grpcio-1.63.0.tar.gz", "grpcio-1.63.0.tar.gz"],
19-
["https://files.pythonhosted.org/packages/5e/d8/65adb47d921ce828ba319d6587aa8758da022de509c3862a70177a958844/protobuf-4.25.3.tar.gz", "protobuf-4.25.3.tar.gz"],
19+
#["https://files.pythonhosted.org/packages/5e/d8/65adb47d921ce828ba319d6587aa8758da022de509c3862a70177a958844/protobuf-4.25.3.tar.gz", "protobuf-4.25.3.tar.gz"],
2020

2121

2222
# ["https://files.pythonhosted.org/packages/87/5b/aae44c6655f3801e81aa3eef09dbbf012431987ba564d7231722f68df02d/MarkupSafe-2.1.5.tar.gz", "MarkupSafe-2.1.5.tar.gz"],
@@ -48,7 +48,7 @@ jobs:
4848
]
4949
wheel_combinations: [
5050
["ubuntu-latest", "x86_64"],
51-
["windows-latest", "AMD64"],
51+
["windows-2019", "AMD64"],
5252
#["macos13", "x86_64"],
5353
# ["macos14", "x86_64"],
5454
]
@@ -63,6 +63,14 @@ jobs:
6363
- name: Install python deps
6464
run: python -m pip install cibuildwheel==2.17.0
6565

66+
- name: Setup linux
67+
if: matrix.wheel_combinations[0] == 'ubuntu-latest'
68+
run: apt install -y rustc
69+
70+
- name: Setup windows
71+
if: matrix.wheel_combinations[0] == 'ubuntu-latest'
72+
run: apt install -y rustc
73+
6674
- name: Download and Untar File - Windows
6775
if: matrix.wheel_combinations[0] == 'windows-latest'
6876
run: |

0 commit comments

Comments
 (0)