diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-19 12:22:55 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-06-19 12:22:55 +0300 |
commit | 13888629d461c5c2faebd783ca8e847e606450e0 (patch) | |
tree | 8e7c32c65ba09acf4380f6396a5a852d94936ae0 /.github/workflows/boost_toolsets.yml | |
parent | workflows/basic: test w/ latest Python (diff) | |
download | cmake-common-13888629d461c5c2faebd783ca8e847e606450e0.tar.gz cmake-common-13888629d461c5c2faebd783ca8e847e606450e0.zip |
workflows: use -latest images where appropriate
Diffstat (limited to '.github/workflows/boost_toolsets.yml')
-rw-r--r-- | .github/workflows/boost_toolsets.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/boost_toolsets.yml b/.github/workflows/boost_toolsets.yml index 9f81156..ba027c6 100644 --- a/.github/workflows/boost_toolsets.yml +++ b/.github/workflows/boost_toolsets.yml @@ -15,13 +15,13 @@ jobs: boost-version: [1.58.0, 1.65.0, 1.72.0] toolset: [auto, clang, clang-cl, gcc, mingw, msvc] cygwin: [0, 1] - os: [ubuntu-18.04, windows-2016, windows-2019] + os: [ubuntu-latest, windows-2016, windows-2019] include: # Prettier run names. - {os: windows-2019, name: Windows 2019} - {os: windows-2016, name: Windows 2016} - - {os: ubuntu-18.04, name: Ubuntu} + - {os: ubuntu-latest, name: Ubuntu} - {cygwin: 1, name: Cygwin} # Target platform. - {boost-version: 1.58.0, platform: x64} @@ -52,9 +52,9 @@ jobs: libraries: filesystem program_options regex system exclude: # Ubuntu: no MSVC/clang-cl/Cygwin. - - {os: ubuntu-18.04, toolset: msvc} - - {os: ubuntu-18.04, toolset: clang-cl} - - {os: ubuntu-18.04, cygwin: 1} + - {os: ubuntu-latest, toolset: msvc} + - {os: ubuntu-latest, toolset: clang-cl} + - {os: ubuntu-latest, cygwin: 1} # Cygwin: no MSVC/clang-cl. - {cygwin: 1, toolset: msvc} - {cygwin: 1, toolset: clang-cl} |