Skip to content

Commit

Permalink
Merge branch 'master' into kazuho/cert-ed25519
Browse files Browse the repository at this point in the history
  • Loading branch information
kazuho committed Mar 22, 2021
2 parents a41798c + 0018405 commit 62e67dd
Showing 1 changed file with 28 additions and 6 deletions.
34 changes: 28 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,29 @@ sudo: required

matrix:
include:
- name: Linux (gcc-8)
- name: Linux (gcc)
os: linux
compiler: gcc-8
addons:
apt:
sources: ['ubuntu-toolchain-r-test']
packages: ['gcc-8']
dist: focal
compiler: gcc
before_install: &bs_linux
- sudo apt-get install faketime libscope-guard-perl libtest-tcp-perl
- name: Linux (clang)
os: linux
dist: focal
compiler: clang
before_install: *bs_linux
- name: Linux (OpenSSL 1.1.0)
os: linux
before_install:
- sudo apt-get install faketime libscope-guard-perl libtest-tcp-perl
- curl https://www.openssl.org/source/old/1.1.0/openssl-1.1.0l.tar.gz | tar xzf -
- cd openssl-1.1.0l
- ./config --prefix=/usr/local/openssl-1.1.0
- make
- sudo make install
- cd ..
env:
- PKG_CONFIG_PATH=/usr/local/openssl-1.1.0/lib/pkgconfig
- name: Linux (OpenSSL 1.0.2)
os: linux
before_install:
Expand All @@ -29,6 +39,18 @@ matrix:
- cd ..
env:
- PKG_CONFIG_PATH=/usr/local/openssl-1.0.2/lib/pkgconfig
- name: Linux (libressl 3.2)
os: linux
before_install:
- sudo apt-get install faketime libscope-guard-perl libtest-tcp-perl
- curl https://ftp.openbsd.org/pub/OpenBSD/LibreSSL/libressl-3.2.5.tar.gz | tar xzf -
- cd libressl-3.2.5
- ./configure --prefix=/usr/local/libressl-3.2
- make
- sudo make install
- cd ..
env:
- PKG_CONFIG_PATH=/usr/local/libressl-3.2/lib/pkgconfig
- name: macOS (Xcode)
os: osx
addons: &addons_macos
Expand Down

0 comments on commit 62e67dd

Please sign in to comment.