8000 install openssl with vcpkg · RustPython/RustPython@610ec2a · GitHub
[go: up one dir, main page]

Skip to content

Commit 610ec2a

Browse files
committed
install openssl with vcpkg
1 parent 72c1c23 commit 610ec2a

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -124,15 +124,12 @@ jobs:
124124
with:
125125
components: clippy
126126
- name: Set up the Windows environment
127-
run: |
128-
vcpkg install openssl
129-
# choco install llvm --no-progress
130-
# choco install openssl --version=3.2.0 --no-progress
131-
# if [[ -d "C:\Program Files\OpenSSL-Win64" ]]; then
132-
# echo "OPENSSL_DIR=C:\Program Files\OpenSSL-Win64" >> $GITHUB_ENV
133-
# else
134-
# echo "OPENSSL_DIR=C:\Program Files\OpenSSL" >> $GITHUB_ENV
135-
# fi
127+
uses: lukka/run-vcpkg@v11
128+
with:
129+
# https://github.com/microsoft/vcpkg/tags
130+
vcpkgGitCommitId: fba75d09065fcc76a25dcf386b1d00d33f5175af
131+
runVcpkgInstall: true
132+
136133
if: runner.os == 'Windows'
137134
- name: Set up the Mac environment
138135
run: brew install autoconf automake libtool

stdlib/vcpkg.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"$schema": "https://raw.githubusercontent.com/microsoft/vcpkg-tool/main/docs/vcpkg.schema.json",
3+
"name": "stdlib",
4+
"version": "0.3.0",
5+
"dependencies": ["openssl"]
6+
}

0 commit comments

Comments
 (0)
0