[前][次][番号順一覧][スレッド一覧]

ruby-changes:58912

From: Kazuhiro <ko1@a...>
Date: Tue, 26 Nov 2019 16:23:04 +0900 (JST)
Subject: [ruby-changes:58912] 5a6e3e7552 (master): Add `--with-openssl-dir` to windows on GitHub Actions

https://git.ruby-lang.org/ruby.git/commit/?id=5a6e3e7552

From 5a6e3e7552382a4863ef5a8833798edb22abb3c7 Mon Sep 17 00:00:00 2001
From: Kazuhiro NISHIYAMA <zn@m...>
Date: Tue, 26 Nov 2019 16:19:18 +0900
Subject: Add `--with-openssl-dir` to windows on GitHub Actions

https://github.com/ruby/ruby/commit/7bd7a013b14fb6c4403ff243ec5db13c5c71f552/checks?check_suite_id=328682567#step:10:1634
```
*** Following extensions are not compiled:
openssl:
	Could not be configured. It will not be installed.
"	d:/a/ruby/ruby/src/ext/openssl/extconf.rb:97: OpenSSL library could not be found. You might want to use --with-openssl-dir=<dir> option to specify the prefix where OpenSSL is installed."
```

diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
index a6afb26..f598da1 100644
--- a/.github/workflows/windows.yml
+++ b/.github/workflows/windows.yml
@@ -61,7 +61,7 @@ jobs: https://github.com/ruby/ruby/blob/trunk/.github/workflows/windows.yml#L61
           md build
           cd build
           call "C:\Program Files (x86)\Microsoft Visual Studio\${{ matrix.vs }}\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
-          ../src/win32/configure.bat --disable-install-doc --without-ext=+,dbm,gdbm --enable-bundled-libffi --with-opt-dir=C:/vcpkg/installed/x64-windows
+          ../src/win32/configure.bat --disable-install-doc --without-ext=+,dbm,gdbm --enable-bundled-libffi --with-opt-dir=C:/vcpkg/installed/x64-windows --with-openssl-dir="C:/Program Files/OpenSSL-Win64"
         shell: cmd
       - name: nmake
         run: |
-- 
cgit v0.10.2


--
ML: ruby-changes@q...
Info: http://www.atdot.net/~ko1/quickml/

[前][次][番号順一覧][スレッド一覧]