From 516af1b182e38aefd4223b740e4c6fef7aea4797 Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Sun, 11 Jul 2021 17:01:58 -0400 Subject: [PATCH] CI: Add more Debian packages to the `llvm-passes` rootfs image (#41544) * Add `less` to the `llvm-passes` rootfs image Also, sort the entries of `packages` in alphabetical order. * Update llvm-passes.jl --- .buildkite/rootfs_images/llvm-passes.jl | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/.buildkite/rootfs_images/llvm-passes.jl b/.buildkite/rootfs_images/llvm-passes.jl index 17c9588f75c9e..2d9e47ba4f0fc 100755 --- a/.buildkite/rootfs_images/llvm-passes.jl +++ b/.buildkite/rootfs_images/llvm-passes.jl @@ -8,18 +8,20 @@ include("rootfs_utils.jl") # Build debian-based image with the following extra packages: packages = [ + "bash", "build-essential", + "cmake", + "curl", + "gfortran", + "git", + "less", "libatomic1", + "m4", + "perl", + "pkg-config", "python", "python3", - "gfortran", - "perl", "wget", - "m4", - "cmake", - "pkg-config", - "curl", - "git", ] tarball_path = debootstrap("llvm-passes"; packages)