.travis.yml
--- actual
+++ expected
@@ -1,202 +1,111 @@
----
-os: osx
-language: generic
+env:
+ global:
+ - CONAN_USERNAME: "conan"
+ - CONAN_LOGIN_USERNAME: "conanbot"
+ - CONAN_CHANNEL: "testing"
+ - CONAN_UPLOAD: "https://api.bintray.com/conan/conan-community/conan"
+ - CONAN_STABLE_BRANCH_PATTERN: "(release|stable)/[a-zA-Z0-9_][a-zA-Z0-9_+.-]+"
+ - CONAN_UPLOAD_ONLY_WHEN_STABLE: 1 # Will only upload when the branch matches the stable pattern
+ - CONAN_DOCKER_32_IMAGES: 1
+ - CONAN_TOTAL_PAGES: 1
+
+
+linux: &linux
+ os: linux
+ dist: xenial
+ language: python
+ python: "3.7"
+ services:
+ - docker
+osx: &osx
+ os: osx
+ language: generic
+
+stages:
+ - conan-linux
+ - conan-osx
jobs:
- include:
- - name: "1.1.1c - XCode 7.3"
- osx_image: xcode7.3
- env: CONAN_APPLE_CLANG_VERSIONS=7.3 CONAN_REFERENCE="OpenSSL/1.1.1c"
- - name: "1.1.1c - XCode 8.3"
- osx_image: xcode8.3
- env: CONAN_APPLE_CLANG_VERSIONS=8.1 CONAN_REFERENCE="OpenSSL/1.1.1c"
- - name: "1.1.1c - XCode 9.2"
- osx_image: xcode9.2
- env: CONAN_APPLE_CLANG_VERSIONS=9.0 CONAN_REFERENCE="OpenSSL/1.1.1c"
- - name: "1.1.1c - XCode 9.4"
- osx_image: xcode9.4
- env: CONAN_APPLE_CLANG_VERSIONS=9.1 CONAN_REFERENCE="OpenSSL/1.1.1c"
- - name: "1.1.1c - XCode 10"
- osx_image: xcode10
- env: CONAN_APPLE_CLANG_VERSIONS=10.0 CONAN_REFERENCE="OpenSSL/1.1.1c"
+ include:
+
+ - <<: *linux
+ stage: conan-linux
+ env: CONAN_GCC_VERSIONS=4.8 CONAN_DOCKER_IMAGE=conanio/gcc48 CONAN_CURRENT_PAGE=1
+
+ - <<: *linux
+ stage: conan-linux
+ env: CONAN_GCC_VERSIONS=4.9 CONAN_DOCKER_IMAGE=conanio/gcc49 CONAN_CURRENT_PAGE=1
+
+ - <<: *linux
+ stage: conan-linux
+ env: CONAN_GCC_VERSIONS=5 CONAN_DOCKER_IMAGE=conanio/gcc5 CONAN_CURRENT_PAGE=1
+
+ - <<: *linux
+ stage: conan-linux
+ env: CONAN_GCC_VERSIONS=6 CONAN_DOCKER_IMAGE=conanio/gcc6 CONAN_CURRENT_PAGE=1
+
+ - <<: *linux
+ stage: conan-linux
+ env: CONAN_GCC_VERSIONS=7 CONAN_DOCKER_IMAGE=conanio/gcc7 CONAN_CURRENT_PAGE=1
+
+ - <<: *linux
+ stage: conan-linux
+ env: CONAN_GCC_VERSIONS=8 CONAN_DOCKER_IMAGE=conanio/gcc8 CONAN_CURRENT_PAGE=1
+
- - name: "1.1.1b - XCode 7.3"
- osx_image: xcode7.3
- env: CONAN_APPLE_CLANG_VERSIONS=7.3 CONAN_REFERENCE="OpenSSL/1.1.1b"
- - name: "1.1.1b - XCode 8.3"
- osx_image: xcode8.3
- env: CONAN_APPLE_CLANG_VERSIONS=8.1 CONAN_REFERENCE="OpenSSL/1.1.1b"
- - name: "1.1.1b - XCode 9.2"
- osx_image: xcode9.2
- env: CONAN_APPLE_CLANG_VERSIONS=9.0 CONAN_REFERENCE="OpenSSL/1.1.1b"
- - name: "1.1.1b - XCode 9.4"
- osx_image: xcode9.4
- env: CONAN_APPLE_CLANG_VERSIONS=9.1 CONAN_REFERENCE="OpenSSL/1.1.1b"
- - name: "1.1.1b - XCode 10"
- osx_image: xcode10
- env: CONAN_APPLE_CLANG_VERSIONS=10.0 CONAN_REFERENCE="OpenSSL/1.1.1b"
+
+ - <<: *linux
+ stage: conan-linux
+ env: CONAN_CLANG_VERSIONS=3.9 CONAN_DOCKER_IMAGE=conanio/clang39 CONAN_CURRENT_PAGE=1
+
+ - <<: *linux
+ stage: conan-linux
+ env: CONAN_CLANG_VERSIONS=4.0 CONAN_DOCKER_IMAGE=conanio/clang40 CONAN_CURRENT_PAGE=1
+
+ - <<: *linux
+ stage: conan-linux
+ env: CONAN_CLANG_VERSIONS=5.0 CONAN_DOCKER_IMAGE=conanio/clang50 CONAN_CURRENT_PAGE=1
+
+ - <<: *linux
+ stage: conan-linux
+ env: CONAN_CLANG_VERSIONS=6.0 CONAN_DOCKER_IMAGE=conanio/clang60 CONAN_CURRENT_PAGE=1
+
+ - <<: *linux
+ stage: conan-linux
+ env: CONAN_CLANG_VERSIONS=7.0 CONAN_DOCKER_IMAGE=conanio/clang7 CONAN_CURRENT_PAGE=1
+
- - name: "1.1.1a - XCode 7.3"
- osx_image: xcode7.3
- env: CONAN_APPLE_CLANG_VERSIONS=7.3 CONAN_REFERENCE="OpenSSL/1.1.1a"
- - name: "1.1.1a - XCode 8.3"
- osx_image: xcode8.3
- env: CONAN_APPLE_CLANG_VERSIONS=8.1 CONAN_REFERENCE="OpenSSL/1.1.1a"
- - name: "1.1.1a - XCode 9.2"
- osx_image: xcode9.2
- env: CONAN_APPLE_CLANG_VERSIONS=9.0 CONAN_REFERENCE="OpenSSL/1.1.1a"
- - name: "1.1.1a - XCode 9.4"
- osx_image: xcode9.4
- env: CONAN_APPLE_CLANG_VERSIONS=9.1 CONAN_REFERENCE="OpenSSL/1.1.1a"
- - name: "1.1.1a - XCode 10"
- osx_image: xcode10
- env: CONAN_APPLE_CLANG_VERSIONS=10.0 CONAN_REFERENCE="OpenSSL/1.1.1a"
-
- - name: "1.1.0k - XCode 7.3 - Page 1"
- osx_image: xcode7.3
- env: CONAN_APPLE_CLANG_VERSIONS=7.3 CONAN_REFERENCE="OpenSSL/1.1.0k" CONAN_TOTAL_PAGES=2 CONAN_CURRENT_PAGE=1
- - name: "1.1.0k - XCode 7.3 - Page 2"
- osx_image: xcode7.3
- env: CONAN_APPLE_CLANG_VERSIONS=7.3 CONAN_REFERENCE="OpenSSL/1.1.0k" CONAN_TOTAL_PAGES=2 CONAN_CURRENT_PAGE=2
- - name: "1.1.0k - XCode 8.3 - Page 1"
- osx_image: xcode8.3
- env: CONAN_APPLE_CLANG_VERSIONS=8.1 CONAN_REFERENCE="OpenSSL/1.1.0k" CONAN_TOTAL_PAGES=2 CONAN_CURRENT_PAGE=1
- - name: "1.1.0k - XCode 8.3 - Page 2"
- osx_image: xcode8.3
- env: CONAN_APPLE_CLANG_VERSIONS=8.1 CONAN_REFERENCE="OpenSSL/1.1.0k" CONAN_TOTAL_PAGES=2 CONAN_CURRENT_PAGE=2
- - name: "1.1.0k - XCode 9.2 - Page 1"
- osx_image: xcode9.2
- env: CONAN_APPLE_CLANG_VERSIONS=9.0 CONAN_REFERENCE="OpenSSL/1.1.0k" CONAN_TOTAL_PAGES=2 CONAN_CURRENT_PAGE=1
- - name: "1.1.0k - XCode 9.2 - Page 2"
- osx_image: xcode9.2
- env: CONAN_APPLE_CLANG_VERSIONS=9.0 CONAN_REFERENCE="OpenSSL/1.1.0k" CONAN_TOTAL_PAGES=2 CONAN_CURRENT_PAGE=2
- - name: "1.1.0k - XCode 9.4 - Page 1"
- osx_image: xcode9.4
- env: CONAN_APPLE_CLANG_VERSIONS=9.1 CONAN_REFERENCE="OpenSSL/1.1.0k" CONAN_TOTAL_PAGES=2 CONAN_CURRENT_PAGE=1
- - name: "1.1.0k - XCode 9.4 - Page 2"
- osx_image: xcode9.4
- env: CONAN_APPLE_CLANG_VERSIONS=9.1 CONAN_REFERENCE="OpenSSL/1.1.0k" CONAN_TOTAL_PAGES=2 CONAN_CURRENT_PAGE=2
- - name: "1.1.0k - XCode 10 - Page 1"
- osx_image: xcode10
- env: CONAN_APPLE_CLANG_VERSIONS=10.0 CONAN_REFERENCE="OpenSSL/1.1.0k" CONAN_TOTAL_PAGES=2 CONAN_CURRENT_PAGE=1
- - name: "1.1.0k - XCode 10 - Page 2"
- osx_image: xcode10
- env: CONAN_APPLE_CLANG_VERSIONS=10.0 CONAN_REFERENCE="OpenSSL/1.1.0k" CONAN_TOTAL_PAGES=2 CONAN_CURRENT_PAGE=2
-
- - name: "1.1.0j - XCode 7.3 - Page 1"
- osx_image: xcode7.3
- env: CONAN_APPLE_CLANG_VERSIONS=7.3 CONAN_REFERENCE="OpenSSL/1.1.0j" CONAN_TOTAL_PAGES=2 CONAN_CURRENT_PAGE=1
- - name: "1.1.0j - XCode 7.3 - Page 2"
- osx_image: xcode7.3
- env: CONAN_APPLE_CLANG_VERSIONS=7.3 CONAN_REFERENCE="OpenSSL/1.1.0j" CONAN_TOTAL_PAGES=2 CONAN_CURRENT_PAGE=2
- - name: "1.1.0j - XCode 8.3 - Page 1"
- osx_image: xcode8.3
- env: CONAN_APPLE_CLANG_VERSIONS=8.1 CONAN_REFERENCE="OpenSSL/1.1.0j" CONAN_TOTAL_PAGES=2 CONAN_CURRENT_PAGE=1
- - name: "1.1.0j - XCode 8.3 - Page 2"
- osx_image: xcode8.3
- env: CONAN_APPLE_CLANG_VERSIONS=8.1 CONAN_REFERENCE="OpenSSL/1.1.0j" CONAN_TOTAL_PAGES=2 CONAN_CURRENT_PAGE=2
- - name: "1.1.0j - XCode 9.2 - Page 1"
- osx_image: xcode9.2
- env: CONAN_APPLE_CLANG_VERSIONS=9.0 CONAN_REFERENCE="OpenSSL/1.1.0j" CONAN_TOTAL_PAGES=2 CONAN_CURRENT_PAGE=1
- - name: "1.1.0j - XCode 9.2 - Page 2"
- osx_image: xcode9.2
- env: CONAN_APPLE_CLANG_VERSIONS=9.0 CONAN_REFERENCE="OpenSSL/1.1.0j" CONAN_TOTAL_PAGES=2 CONAN_CURRENT_PAGE=2
- - name: "1.1.0j - XCode 9.4 - Page 1"
- osx_image: xcode9.4
- env: CONAN_APPLE_CLANG_VERSIONS=9.1 CONAN_REFERENCE="OpenSSL/1.1.0j" CONAN_TOTAL_PAGES=2 CONAN_CURRENT_PAGE=1
- - name: "1.1.0j - XCode 9.4 - Page 2"
- osx_image: xcode9.4
- env: CONAN_APPLE_CLANG_VERSIONS=9.1 CONAN_REFERENCE="OpenSSL/1.1.0j" CONAN_TOTAL_PAGES=2 CONAN_CURRENT_PAGE=2
- - name: "1.1.0j - XCode 10 - Page 1"
- osx_image: xcode10
- env: CONAN_APPLE_CLANG_VERSIONS=10.0 CONAN_REFERENCE="OpenSSL/1.1.0j" CONAN_TOTAL_PAGES=2 CONAN_CURRENT_PAGE=1
- - name: "1.1.0j - XCode 10 - Page 2"
- osx_image: xcode10
- env: CONAN_APPLE_CLANG_VERSIONS=10.0 CONAN_REFERENCE="OpenSSL/1.1.0j" CONAN_TOTAL_PAGES=2 CONAN_CURRENT_PAGE=2
-
- - name: "1.1.0i - XCode 7.3 - Page 1"
- osx_image: xcode7.3
- env: CONAN_APPLE_CLANG_VERSIONS=7.3 CONAN_REFERENCE="OpenSSL/1.1.0i" CONAN_TOTAL_PAGES=2 CONAN_CURRENT_PAGE=1
- - name: "1.1.0i - XCode 7.3 - Page 2"
- osx_image: xcode7.3
- env: CONAN_APPLE_CLANG_VERSIONS=7.3 CONAN_REFERENCE="OpenSSL/1.1.0i" CONAN_TOTAL_PAGES=2 CONAN_CURRENT_PAGE=2
- - name: "1.1.0i - XCode 8.3 - Page 1"
- osx_image: xcode8.3
- env: CONAN_APPLE_CLANG_VERSIONS=8.1 CONAN_REFERENCE="OpenSSL/1.1.0i" CONAN_TOTAL_PAGES=2 CONAN_CURRENT_PAGE=1
- - name: "1.1.0i - XCode 8.3 - Page 2"
- osx_image: xcode8.3
- env: CONAN_APPLE_CLANG_VERSIONS=8.1 CONAN_REFERENCE="OpenSSL/1.1.0i" CONAN_TOTAL_PAGES=2 CONAN_CURRENT_PAGE=2
- - name: "1.1.0i - XCode 9.2 - Page 1"
- osx_image: xcode9.2
- env: CONAN_APPLE_CLANG_VERSIONS=9.0 CONAN_REFERENCE="OpenSSL/1.1.0i" CONAN_TOTAL_PAGES=2 CONAN_CURRENT_PAGE=1
- - name: "1.1.0i - XCode 9.2 - Page 2"
- osx_image: xcode9.2
- env: CONAN_APPLE_CLANG_VERSIONS=9.0 CONAN_REFERENCE="OpenSSL/1.1.0i" CONAN_TOTAL_PAGES=2 CONAN_CURRENT_PAGE=2
- - name: "1.1.0i - XCode 9.4 - Page 1"
- osx_image: xcode9.4
- env: CONAN_APPLE_CLANG_VERSIONS=9.1 CONAN_REFERENCE="OpenSSL/1.1.0i" CONAN_TOTAL_PAGES=2 CONAN_CURRENT_PAGE=1
- - name: "1.1.0i - XCode 9.4 - Page 2"
- osx_image: xcode9.4
- env: CONAN_APPLE_CLANG_VERSIONS=9.1 CONAN_REFERENCE="OpenSSL/1.1.0i" CONAN_TOTAL_PAGES=2 CONAN_CURRENT_PAGE=2
- - name: "1.1.0i - XCode 10 - Page 1"
- osx_image: xcode10
- env: CONAN_APPLE_CLANG_VERSIONS=10.0 CONAN_REFERENCE="OpenSSL/1.1.0i" CONAN_TOTAL_PAGES=2 CONAN_CURRENT_PAGE=1
- - name: "1.1.0i - XCode 10 - Page 2"
- osx_image: xcode10
- env: CONAN_APPLE_CLANG_VERSIONS=10.0 CONAN_REFERENCE="OpenSSL/1.1.0i" CONAN_TOTAL_PAGES=2 CONAN_CURRENT_PAGE=2
-
- - name: "1.0.2s - XCode 7.3"
- osx_image: xcode7.3
- env: CONAN_APPLE_CLANG_VERSIONS=7.3 CONAN_REFERENCE="OpenSSL/1.0.2s"
- - name: "1.0.2s - XCode 8.3"
- osx_image: xcode8.3
- env: CONAN_APPLE_CLANG_VERSIONS=8.1 CONAN_REFERENCE="OpenSSL/1.0.2s"
- - name: "1.0.2s - XCode 9.2"
- osx_image: xcode9.2
- env: CONAN_APPLE_CLANG_VERSIONS=9.0 CONAN_REFERENCE="OpenSSL/1.0.2s"
- - name: "1.0.2s - XCode 9.4"
- osx_image: xcode9.4
- env: CONAN_APPLE_CLANG_VERSIONS=9.1 CONAN_REFERENCE="OpenSSL/1.0.2s"
- - name: "1.0.2s - XCode 10"
- osx_image: xcode10
- env: CONAN_APPLE_CLANG_VERSIONS=10.0 CONAN_REFERENCE="OpenSSL/1.0.2s"
-
- - name: "1.0.2r - XCode 7.3"
- osx_image: xcode7.3
- env: CONAN_APPLE_CLANG_VERSIONS=7.3 CONAN_REFERENCE="OpenSSL/1.0.2r"
- - name: "1.0.2r - XCode 8.3"
- osx_image: xcode8.3
- env: CONAN_APPLE_CLANG_VERSIONS=8.1 CONAN_REFERENCE="OpenSSL/1.0.2r"
- - name: "1.0.2r - XCode 9.2"
- osx_image: xcode9.2
- env: CONAN_APPLE_CLANG_VERSIONS=9.0 CONAN_REFERENCE="OpenSSL/1.0.2r"
- - name: "1.0.2r - XCode 9.4"
- osx_image: xcode9.4
- env: CONAN_APPLE_CLANG_VERSIONS=9.1 CONAN_REFERENCE="OpenSSL/1.0.2r"
- - name: "1.0.2r - XCode 10"
- osx_image: xcode10
- env: CONAN_APPLE_CLANG_VERSIONS=10.0 CONAN_REFERENCE="OpenSSL/1.0.2r"
-
- - name: "1.0.2q - XCode 7.3"
- osx_image: xcode7.3
- env: CONAN_APPLE_CLANG_VERSIONS=7.3 CONAN_REFERENCE="OpenSSL/1.0.2q"
- - name: "1.0.2q - XCode 8.3"
- osx_image: xcode8.3
- env: CONAN_APPLE_CLANG_VERSIONS=8.1 CONAN_REFERENCE="OpenSSL/1.0.2q"
- - name: "1.0.2q - XCode 9.2"
- osx_image: xcode9.2
- env: CONAN_APPLE_CLANG_VERSIONS=9.0 CONAN_REFERENCE="OpenSSL/1.0.2q"
- - name: "1.0.2q - XCode 9.4"
- osx_image: xcode9.4
- env: CONAN_APPLE_CLANG_VERSIONS=9.1 CONAN_REFERENCE="OpenSSL/1.0.2q"
- - name: "1.0.2q - XCode 10"
- osx_image: xcode10
- env: CONAN_APPLE_CLANG_VERSIONS=10.0 CONAN_REFERENCE="OpenSSL/1.0.2q"
+
+ - <<: *linux
+ stage: conan-osx
+ osx_image: xcode7.3
+ env: CONAN_APPLE_CLANG_VERSIONS=7.3 CONAN_CURRENT_PAGE=1
+
+ - <<: *linux
+ stage: conan-osx
+ osx_image: xcode8.1
+ env: CONAN_APPLE_CLANG_VERSIONS=8.1 CONAN_CURRENT_PAGE=1
+
+ - <<: *linux
+ stage: conan-osx
+ osx_image: xcode9.0
+ env: CONAN_APPLE_CLANG_VERSIONS=9.0 CONAN_CURRENT_PAGE=1
+
+ - <<: *linux
+ stage: conan-osx
+ osx_image: xcode9.1
+ env: CONAN_APPLE_CLANG_VERSIONS=9.1 CONAN_CURRENT_PAGE=1
+
+ - <<: *linux
+ stage: conan-osx
+ osx_image: xcode10.0
+ env: CONAN_APPLE_CLANG_VERSIONS=10.0 CONAN_CURRENT_PAGE=1
+
install:
- - chmod +x .ci/install.sh
- - ./.ci/install.sh
+ - chmod +x .travis/install.sh
+ - ./.travis/install.sh
script:
- - chmod +x .ci/run.sh
- - ./.ci/run.sh
+ - chmod +x .travis/run.sh
+ - ./.travis/run.sh