Skip to content

Commit c1c9631

Browse files
authored
Merge pull request RustPython#1823 from RustPython/coolreader18/stdlib-ssl
Add the ssl stdlib module
2 parents 210e8a0 + 7051b25 commit c1c9631

File tree

15 files changed

+4643
-19
lines changed

15 files changed

+4643
-19
lines changed

.github/workflows/ci.yaml

Lines changed: 23 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@ on:
55

66
name: CI
77

8+
env:
9+
VCPKGRS_DYNAMIC: 1
10+
811
jobs:
912
rust_tests:
1013
name: Run rust tests
@@ -15,8 +18,16 @@ jobs:
1518
fail-fast: false
1619
steps:
1720
- uses: actions/checkout@master
18-
- name: Convert symlinks to hardlink (windows only)
19-
run: powershell.exe scripts/symlinks-to-hardlinks.ps1
21+
- name: Cache Windows
22+
uses: actions/cache@v1
23+
with:
24+
key: vcpkg
25+
path: 'C:/vcpkg'
26+
if: runner.os == 'Windows'
27+
- name: Set up the Windows environment
28+
run: |
29+
powershell.exe scripts/symlinks-to-hardlinks.ps1
30+
powershell.exe scripts/install-openssl.ps1
2031
if: runner.os == 'Windows'
2132
- name: Cache cargo dependencies
2233
uses: actions/cache@v1
@@ -40,8 +51,16 @@ jobs:
4051
fail-fast: false
4152
steps:
4253
- uses: actions/checkout@master
43-
- name: Convert symlinks to hardlink (windows only)
44-
run: powershell.exe scripts/symlinks-to-hardlinks.ps1
54+
- name: Cache Windows
55+
uses: actions/cache@v1
56+
with:
57+
key: vcpkg
58+
path: 'C:/vcpkg'
59+
if: runner.os == 'Windows'
60+
- name: Set up the Windows environment
61+
run: |
62+
powershell.exe scripts/symlinks-to-hardlinks.ps1
63+
powershell.exe scripts/install-openssl.ps1
4564
if: runner.os == 'Windows'
4665
- name: Cache cargo dependencies
4766
uses: actions/cache@v1

Cargo.lock

Lines changed: 108 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)