diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-02 05:08:55 +0100 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-01-02 05:08:55 +0100 |
commit | ef434b41eb33a70396fb336b1bae39c76d740c3d (patch) | |
tree | 1d1049d60c3d9504d060cab8043f2f16cf991976 /action.yml | |
parent | workflows/test: add Jammy, versions 14-15 (diff) | |
download | setup-clang-ef434b41eb33a70396fb336b1bae39c76d740c3d.tar.gz setup-clang-ef434b41eb33a70396fb336b1bae39c76d740c3d.zip |
Diffstat (limited to '')
-rw-r--r-- | action.yml | 11 |
1 files changed, 0 insertions, 11 deletions
@@ -124,7 +124,6 @@ runs: $pkg_clang = 'clang' $pkg_llvm = 'llvm' $pkg_gxx = 'g++' - $additional_deps = @() if (!$latest) { $pkg_version = Format-UpstreamVersion $version @@ -135,21 +134,11 @@ runs: $clang = "$clang-$pkg_version" $clangxx = "$clangxx-$pkg_version" - - if ($pkg_version -eq '13') { - # On both Bionic and Focal, the following error occurs otherwise: - # - # The following packages have unmet dependencies: - # llvm-13 : Depends: libomp5-13 (>= 8) but it is not going to be installed - # E: Unable to correct problems, you have held broken packages. - $additional_deps += 'libomp5-13' - } } if (!$x64) { $pkg_gxx = 'g++-multilib' } $packages = $pkg_clang,$pkg_llvm,$pkg_gxx - $packages += $additional_deps Install-Package $packages } elseif ($cygwin_host) { |