Hiding secure environment variables from the build page

Travis recently started showing global secure environment variables in the build matrix page. See for example https://travis-ci.org/github/sympy/sympy

Is there any way to disable this? It makes the normal environment variables that we use to differentiate builds difficult to see. You have to hover over each build to see them.

1 Like

Apparently variables are listed in the order they appear in the file, with global variables first. So the solution is to move the variables to the matrix section, and include them last. In my use-case, this is better anyway because I only actually need the secure variable for a single build in the matrix, so it’s more secure.