Skip to content

Commit 6b51f97

Browse files
author
Georgi Petrov
committed
Test new vars
1 parent 1f7a1d3 commit 6b51f97

File tree

3 files changed

+15
-15
lines changed

3 files changed

+15
-15
lines changed

.github/workflows/analysis_workflow.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,9 @@ jobs:
127127

128128
- name: Install deps
129129
run: |
130-
yum update -y
131-
yum remove -y 'gcc-toolset-13-*'
132-
yum install -y zip flex bison gcc-toolset-10 gcc-toolset-10-gdb gcc-toolset-10-libatomic-devel krb5-devel cyrus-sasl-devel openssl-devel \
130+
dnf update -y
131+
dnf remove -y 'gcc-toolset-13-*'
132+
dnf install -y zip flex bison gcc-toolset-10 gcc-toolset-10-gdb gcc-toolset-10-libatomic-devel krb5-devel cyrus-sasl-devel openssl-devel \
133133
unzip tar epel-release jq wget libcurl-devel python3 \
134134
python3-devel python3-pip perl-IPC-Cmd
135135
@@ -140,9 +140,9 @@ jobs:
140140
echo LD_LIBRARY_PATH=/opt/rh/gcc-toolset-10/root/usr/lib64:/opt/rh/gcc-toolset-10/root/usr/lib:/opt/rh/gcc-toolset-10/root/usr/lib64/dyninst | tee -a $GITHUB_ENV
141141
echo "/opt/rh/devtoolset-10/root/usr/bin" | tee -a $GITHUB_PATH
142142
143-
yum install -y mono-complete
143+
dnf install -y mono-complete
144144
145-
yum clean all
145+
dnf clean all
146146
147147
- name: Extra envs
148148
run: |

.github/workflows/benchmark_commits.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ jobs:
4545

4646
- name: Install deps
4747
run: |
48-
yum update -y
49-
yum remove -y 'gcc-toolset-13-*'
50-
yum install -y zip flex bison gcc-toolset-10 gcc-toolset-10-gdb gcc-toolset-10-libatomic-devel krb5-devel cyrus-sasl-devel openssl-devel \
48+
dnf update -y
49+
dnf remove -y 'gcc-toolset-13-*'
50+
dnf install -y zip flex bison gcc-toolset-10 gcc-toolset-10-gdb gcc-toolset-10-libatomic-devel krb5-devel cyrus-sasl-devel openssl-devel \
5151
unzip tar epel-release jq wget libcurl-devel python3 \
5252
python3-devel python3-pip perl-IPC-Cmd
5353
@@ -58,9 +58,9 @@ jobs:
5858
echo LD_LIBRARY_PATH=/opt/rh/gcc-toolset-10/root/usr/lib64:/opt/rh/gcc-toolset-10/root/usr/lib:/opt/rh/gcc-toolset-10/root/usr/lib64/dyninst | tee -a $GITHUB_ENV
5959
echo "/opt/rh/devtoolset-10/root/usr/bin" | tee -a $GITHUB_PATH
6060
61-
yum install -y mono-complete
61+
dnf install -y mono-complete
6262
63-
yum clean all
63+
dnf clean all
6464
6565
# We are changing the python here because we want to use the default python to build (it is devel version)
6666
# and this python for the rest of the testing

.github/workflows/build_steps.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,9 @@ jobs:
8787
- name: Install deps
8888
if: matrix.os == 'linux' && inputs.job_type != 'build-python-wheels'
8989
run: |
90-
yum update -y
91-
yum remove -y 'gcc-toolset-13-*'
92-
yum install -y zip flex bison gcc-toolset-10 gcc-toolset-10-gdb gcc-toolset-10-libatomic-devel krb5-devel cyrus-sasl-devel openssl-devel \
90+
dnf update -y
91+
dnf remove -y 'gcc-toolset-13-*'
92+
dnf install -y zip flex bison gcc-toolset-10 gcc-toolset-10-gdb gcc-toolset-10-libatomic-devel krb5-devel cyrus-sasl-devel openssl-devel \
9393
unzip tar epel-release jq wget libcurl-devel python3 \
9494
python3-devel python3-pip perl-IPC-Cmd
9595
@@ -100,9 +100,9 @@ jobs:
100100
echo LD_LIBRARY_PATH=/opt/rh/gcc-toolset-10/root/usr/lib64:/opt/rh/gcc-toolset-10/root/usr/lib:/opt/rh/gcc-toolset-10/root/usr/lib64/dyninst | tee -a $GITHUB_ENV
101101
echo "/opt/rh/devtoolset-10/root/usr/bin" | tee -a $GITHUB_PATH
102102
103-
yum install -y mono-complete
103+
dnf install -y mono-complete
104104
105-
yum clean all
105+
dnf clean all
106106
107107
108108
- name: Configure sccache

0 commit comments

Comments
 (0)