Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit7022512

Browse files
authored
retry windows ci openssl fix (RustPython#5082)
1 parent4135da4 commit7022512

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

‎.github/workflows/ci.yaml‎

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,11 @@ jobs:
127127
shell:bash
128128
run:|
129129
choco install llvm openssl --no-progress
130-
echo "OPENSSL_DIR=C:\Program Files\OpenSSL-Win64" >> $GITHUB_ENV
130+
if [[ -d "C:\Program Files\OpenSSL-Win64" ]]; then
131+
echo "OPENSSL_DIR=C:\Program Files\OpenSSL-Win64" >> $GITHUB_ENV
132+
else
133+
echo "OPENSSL_DIR=C:\Program Files\OpenSSL" >> $GITHUB_ENV
134+
fi
131135
if:runner.os == 'Windows'
132136
-name:Set up the Mac environment
133137
run:brew install autoconf automake libtool
@@ -252,7 +256,11 @@ jobs:
252256
shell:bash
253257
run:|
254258
choco install llvm openssl --no-progress
255-
echo "OPENSSL_DIR=C:\Program Files\OpenSSL-Win64" >>$GITHUB_ENV
259+
if [[ -d "C:\Program Files\OpenSSL-Win64" ]]; then
260+
echo "OPENSSL_DIR=C:\Program Files\OpenSSL-Win64;" >> $GITHUB_ENV
261+
else
262+
echo "OPENSSL_DIR=C:\Program Files\OpenSSL;" >> $GITHUB_ENV
263+
fi
256264
if:runner.os == 'Windows'
257265
-name:Set up the Mac environment
258266
run:brew install autoconf automake libtool openssl@3

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp