File tree 5 files changed +15
-7
lines changed
5 files changed +15
-7
lines changed Original file line number Diff line number Diff line change 36
36
distros : ' [
37
37
"almalinux-8",
38
38
"almalinux-9",
39
+ "centos-stream9",
39
40
"debian-bookworm",
40
41
"debian-testing",
41
42
"fedora-latest",
43
+ "fedora-rawhide",
42
44
"ubuntu-noble"
43
45
]'
Original file line number Diff line number Diff line change @@ -31,14 +31,14 @@ function install_dbld_dependencies()
31
31
{
32
32
case " ${OS_DISTRIBUTION} " in
33
33
centos|almalinux)
34
- $YUM_INSTALL wget yum-utils
34
+ $YUM_INSTALL yum-utils
35
35
;;
36
36
debian|ubuntu)
37
37
apt-get update
38
- $APT_INSTALL wget gnupg2
38
+ $APT_INSTALL curl gnupg2
39
39
;;
40
40
fedora)
41
- $DNF_INSTALL -y wget dnf-plugins-core
41
+ $DNF_INSTALL -y dnf-plugins-core
42
42
;;
43
43
esac
44
44
}
@@ -92,7 +92,7 @@ function install_pip2 {
92
92
function download_target() {
93
93
target=$1
94
94
output=$2
95
- wget --no-check-certificate $target --output-document= $output
95
+ curl --location --insecure " $target " --output " $output "
96
96
}
97
97
98
98
function filter_packages_by_platform {
@@ -214,9 +214,9 @@ function install_perf {
214
214
function install_bison_from_source {
215
215
BISON_VERSION=3.7.6
216
216
cd /tmp
217
- wget https://ftp.gnu.org/gnu/bison/bison-${BISON_VERSION} .tar.gz
218
- tar xvfz bison-${BISON_VERSION} .tar.gz
219
- cd bison-${BISON_VERSION}
217
+ download_target https://ftp.gnu.org/gnu/bison/bison- ${BISON_VERSION} .tar.gz /tmp /bison-${BISON_VERSION} .tar.gz
218
+ tar xvfz /tmp/ bison-${BISON_VERSION} .tar.gz
219
+ cd /tmp/ bison-${BISON_VERSION}
220
220
./configure --prefix=/usr/local --disable-nls
221
221
make && make install
222
222
}
Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ RUN /dbld/builddeps install_rpm_build_deps
20
20
RUN /dbld/builddeps install_criterion
21
21
RUN /dbld/builddeps install_gradle
22
22
23
+ RUN dnf upgrade -y
24
+
23
25
VOLUME /source
24
26
VOLUME /build
25
27
Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ RUN /dbld/builddeps install_dbld_dependencies
19
19
RUN /dbld/builddeps install_apt_packages
20
20
RUN /dbld/builddeps install_debian_build_deps
21
21
22
+ RUN apt upgrade -y
23
+
22
24
VOLUME /source
23
25
VOLUME /build
24
26
Original file line number Diff line number Diff line change @@ -20,6 +20,8 @@ RUN /dbld/builddeps install_rpm_build_deps
20
20
RUN /dbld/builddeps install_criterion
21
21
RUN /dbld/builddeps install_gradle
22
22
23
+ RUN dnf upgrade -y
24
+
23
25
VOLUME /source
24
26
VOLUME /build
25
27
You can’t perform that action at this time.
0 commit comments