aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSHIBATA Hiroshi <hsbt@ruby-lang.org>2020-02-15 19:53:12 +0900
committerGitHub <noreply@github.com>2020-02-15 19:53:12 +0900
commitf602e67405a6ff77b04a16f8300f0230468623de (patch)
treebcf325c87da1d559d283c79909a6c446bda61bcf
parent8f39adb79cf18dc9d9b6f0fd3c609afb3cbd6530 (diff)
parentf7c78fbb47b4507ea7352d7e53e6e195b56a9d30 (diff)
downloadruby-openssl-f602e67405a6ff77b04a16f8300f0230468623de.tar.gz
Merge pull request #323 from ruby/remove-appveyor
Removed appveyor configuration and badge
-rw-r--r--README.md2
-rw-r--r--appveyor.yml_26
2 files changed, 1 insertions, 27 deletions
diff --git a/README.md b/README.md
index ff50ca18..48ba4d39 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
[![Actions Status](https://github.com/ruby/openssl/workflows/OpenSSL/badge.svg)](https://github.com/ruby/openssl/actions?workflow=OpenSSL)
[![Build Status](https://travis-ci.org/ruby/openssl.svg?branch=master)](https://travis-ci.org/ruby/openssl)
-[![Build status](https://ci.appveyor.com/api/projects/status/b8djtmwo7l26f88y/branch/master?svg=true)](https://ci.appveyor.com/project/ruby/openssl/branch/master)
+
OpenSSL provides SSL, TLS and general purpose cryptography. It wraps the
OpenSSL library.
diff --git a/appveyor.yml_ b/appveyor.yml_
deleted file mode 100644
index 18484fb9..00000000
--- a/appveyor.yml_
+++ /dev/null
@@ -1,26 +0,0 @@
----
-clone_depth: 10
-install:
- - ps: |
- $Env:PATH = "C:\Ruby${Env:ruby_version}\bin;${Env:PATH}"
- if ($Env:ruby_version -match "^23" ) {
- # RubyInstaller; download OpenSSL headers from OpenKnapsack Project
- $Env:openssl_dir = "C:\Ruby${Env:ruby_version}"
- appveyor DownloadFile http://dl.bintray.com/oneclick/OpenKnapsack/x64/openssl-1.0.2j-x64-windows.tar.lzma
- 7z e openssl-1.0.2j-x64-windows.tar.lzma
- 7z x -y -oC:\Ruby${Env:ruby_version} openssl-1.0.2j-x64-windows.tar
- } else {
- # RubyInstaller2; openssl package seems to be installed already
- $Env:openssl_dir = "C:\msys64\mingw64"
- }
- - ruby -v
- - rake install_dependencies
-build_script:
- - rake -rdevkit compile -- --with-openssl-dir=%openssl_dir% --enable-debug
-test_script:
- - rake test OSSL_MDEBUG=1
-deploy: off
-environment:
- matrix:
- - ruby_version: "23-x64" # RI
- - ruby_version: "24-x64" # RI2