diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-24 16:31:38 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-04-24 16:31:38 +0300 |
commit | 74a7b235db23b2a114bbc455f51f40ba33495d10 (patch) | |
tree | e4f39f68588c312a4d33f578298affed9ec15d99 | |
parent | workflows: use actions/cache@v2 (diff) | |
download | cmake-common-74a7b235db23b2a114bbc455f51f40ba33495d10.tar.gz cmake-common-74a7b235db23b2a114bbc455f51f40ba33495d10.zip |
README: fix Travis workflow variables
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -126,10 +126,10 @@ dist: focal env: global: - boost_version: 1.65.0 + BOOST_VERSION: 1.65.0 jobs: - - configuration=Debug platform=x64 - - configuration=Release platform=x64 + - CONFIGURATION=Debug PLATFORM=x64 + - CONFIGURATION=Release PLATFORM=x64 before_script: ci-boost -- --with-filesystem script: ci-cmake --install |