diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-03-24 18:28:58 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-03-24 18:28:58 +0300 |
commit | e5de0b18453dd2fb3bf3e02414ee00ee185d81d6 (patch) | |
tree | 2a52f2c975c11c50f6ee0c67ef4f48d2137fe7f8 /project/ci | |
parent | fix PyLint warnings (diff) | |
download | cmake-common-e5de0b18453dd2fb3bf3e02414ee00ee185d81d6.tar.gz cmake-common-e5de0b18453dd2fb3bf3e02414ee00ee185d81d6.zip |
project.ci: GitHub Actions no longer has pre-built Boost
Diffstat (limited to 'project/ci')
-rw-r--r-- | project/ci/dirs.py | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/project/ci/dirs.py b/project/ci/dirs.py index acd0717..f1b1c57 100644 --- a/project/ci/dirs.py +++ b/project/ci/dirs.py @@ -149,12 +149,8 @@ class GitHub(Dirs): return env('GITHUB_WORKSPACE') def get_prebuilt_boost_dir(self): - # As of 2021-01-25, Boost 1.72.0 is pre-built (on all images except for - # ubuntu-20.04 for some reason). The path is stored in environment - # variable BOOST_ROOT_1_72_0. - var_name = 'BOOST_ROOT_1_72_0' - if var_name in os.environ: - return os.environ[var_name] + # Used to have 1.72.0 pre-built binaries, but not anymore: + # https://github.com/actions/virtual-environments/issues/2667 return None def get_cmake_args(self): |