Simple reproduction of the problem: A .travis.yml, makes two builds, one without environment variables defined. One build only, with TARGET=linux is desired:
language: c++
compiler: gcc
matrix:
include:
- os: linux
env: TARGET="linux"
install: true
script: true
leads to
15.1 Compiler: gcc no environment variables set
15.2 Compiler: gcc TARGET="linux"
https://travis-ci.org/bilderbuchi/travis_production_test/builds/76336816
Related issue: #1228
Simple reproduction of the problem: A .travis.yml, makes two builds, one without environment variables defined. One build only, with
TARGET=linuxis desired:leads to
https://travis-ci.org/bilderbuchi/travis_production_test/builds/76336816
Related issue: #1228