CI: .travis.yml: {add,set,sort} features from build.sh explicitly

M  .travis.yml
This commit is contained in:
Anton-Latukha 2020-06-23 20:29:13 +03:00
parent 7cba5b2043
commit 962af5d6ba
No known key found for this signature in database
GPG key ID: 3D84C07E91802E41

View file

@ -35,21 +35,33 @@ env:
- project='hnix' - project='hnix'
# Enable all our tests in Cabal # Enable all our tests in Cabal
- ALL_TESTS='yes' - ALL_TESTS='yes'
- failOnAllWarnings='false' - allowInconsistentDependencies='false'
- checkUnusedPackages='false'
- doCoverage='false'
- doHaddock='false'
- doJailbreak='false' - doJailbreak='false'
- doCheck='true' - doCheck='true'
- doBenchmark='false' - sdistTarball='false'
- enableExecutableProfiling='false'
- enableLibraryProfiling='false'
- buildFromSdist='false' - buildFromSdist='false'
- buildStrictly='false' - buildStrictly='false'
- failOnAllWarnings='false'
- enableDeadCodeElimination='false'
- disableOptimization='true' - disableOptimization='true'
- linkWithGold='false'
- enableLibraryProfiling='false'
- enableExecutableProfiling='false'
- doTracing='false'
- enableDWARFDebugging='false'
- doStrip='false'
- enableSharedLibraries='true'
- enableStaticLibraries='false'
- enableSharedExecutables='false'
- justStaticExecutables='false'
- enableSeparateBinOutput='false'
- checkUnusedPackages='false'
- doHaddock='false'
- doHyperlinkSource='false'
- doCoverage='false'
- doBenchmark='false'
- generateOptparseApplicativeCompletions='false' - generateOptparseApplicativeCompletions='false'
- executableNamesToShellComplete='[ "hnix" ]' - executableNamesToShellComplete='[ "hnix" ]'
- allowInconsistentDependencies='false'
# #
- ghcjsTmpLogFile='/tmp/ghcjsTmpLogFile.log' - ghcjsTmpLogFile='/tmp/ghcjsTmpLogFile.log'
- ghcjsLogTailLength='10000' - ghcjsLogTailLength='10000'