Ho un progetto Python che richiede anche Java 8 per eseguire i test e quindi fallisce perché Travis CI utilizza Java 7 per impostazione predefinita. So che questo può essere aggiornato se il progetto è un progetto Java ma il mio è Python. Ho un file travis.yml come di seguito:
language: python
python:
- '2.7'
...
Ho provato a installare Java 8 usando i seguenti metodi
language: python
python:
- '2.7'
jdk:
- oraclejdk8
...
e
language: python
python:
- '2.7'
script:
- jdk_switcher use oraclejdk8
...
Qualche idea se questo è possibile? Sto pensando che potrebbe non esserlo.