You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hc.apache.org by gg...@apache.org on 2021/10/12 19:11:45 UTC

[httpcomponents-core] branch master updated (7d3b65b -> 5674d60)

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/httpcomponents-core.git.


 discard 7d3b65b  Run arm64 with openjdk11 because Travis is broken with openjdk8 on arm64 (JRE only).
 discard 020fcb4  Update Travis builds to LTS versions.
 discard d4884a1  Attempt to use Java 17 since it is the latest LTS AND make Travis CI happy.
     new 5674d60  Update Travis builds to LTS versions.

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (7d3b65b)
            \
             N -- N -- N   refs/heads/master (5674d60)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:

[httpcomponents-core] 01/01: Update Travis builds to LTS versions.

Posted by gg...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/httpcomponents-core.git

commit 5674d60e862d36f851d632f34baeab2d6b178a9c
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Mon Oct 11 14:33:16 2021 -0400

    Update Travis builds to LTS versions.
    
    Run arm64 with openjdk11 because Travis is broken with openjdk8 on arm64
    (JRE only).
---
 .travis.yml | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/.travis.yml b/.travis.yml
index 2e37927..8a73aee 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -14,15 +14,15 @@
 # limitations under the License.
 
 language: java
-dist: trusty
 sudo: false
 
 services:
   - docker
 
 jdk:
+  - openjdk8
   - openjdk11
-  - oraclejdk16
+  - oraclejdk17
   - openjdk-ea
 
 addons:
@@ -38,6 +38,7 @@ jobs:
   include:
     - name: arm64
       arch: arm64
+      jdk: openjdk11
       script: mvn verify -B
   allow_failures:
     - jdk: openjdk-ea