Skip to content

Add the ssl stdlib module #1823

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Apr 1, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 23 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ on:

name: CI

env:
VCPKGRS_DYNAMIC: 1

jobs:
rust_tests:
name: Run rust tests
Expand All @@ -15,8 +18,16 @@ jobs:
fail-fast: false
steps:
- uses: actions/checkout@master
- name: Convert symlinks to hardlink (windows only)
run: powershell.exe scripts/symlinks-to-hardlinks.ps1
- name: Cache Windows
uses: actions/cache@v1
with:
key: vcpkg
path: 'C:/vcpkg'
if: runner.os == 'Windows'
- name: Set up the Windows environment
run: |
powershell.exe scripts/symlinks-to-hardlinks.ps1
powershell.exe scripts/install-openssl.ps1
if: runner.os == 'Windows'
- name: Cache cargo dependencies
uses: actions/cache@v1
Expand All @@ -40,8 +51,16 @@ jobs:
fail-fast: false
steps:
- uses: actions/checkout@master
- name: Convert symlinks to hardlink (windows only)
run: powershell.exe scripts/symlinks-to-hardlinks.ps1
- name: Cache Windows
uses: actions/cache@v1
with:
key: vcpkg
path: 'C:/vcpkg'
if: runner.os == 'Windows'
- name: Set up the Windows environment
run: |
powershell.exe scripts/symlinks-to-hardlinks.ps1
powershell.exe scripts/install-openssl.ps1
if: runner.os == 'Windows'
- name: Cache cargo dependencies
uses: actions/cache@v1
Expand Down
108 changes: 108 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading