From 6b51f974015bd76af7cd988eb9d1e62cd3d0c63a Mon Sep 17 00:00:00 2001 From: Georgi Petrov Date: Fri, 29 Nov 2024 11:56:02 +0200 Subject: [PATCH] Test new vars --- .github/workflows/analysis_workflow.yml | 10 +++++----- .github/workflows/benchmark_commits.yml | 10 +++++----- .github/workflows/build_steps.yml | 10 +++++----- 3 files changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/analysis_workflow.yml b/.github/workflows/analysis_workflow.yml index d5bc0c9cad0..9b1f72b9b7b 100644 --- a/.github/workflows/analysis_workflow.yml +++ b/.github/workflows/analysis_workflow.yml @@ -127,9 +127,9 @@ jobs: - name: Install deps run: | - yum update -y - yum remove -y 'gcc-toolset-13-*' - 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 \ + dnf update -y + dnf remove -y 'gcc-toolset-13-*' + 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 \ unzip tar epel-release jq wget libcurl-devel python3 \ python3-devel python3-pip perl-IPC-Cmd @@ -140,9 +140,9 @@ jobs: 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 echo "/opt/rh/devtoolset-10/root/usr/bin" | tee -a $GITHUB_PATH - yum install -y mono-complete + dnf install -y mono-complete - yum clean all + dnf clean all - name: Extra envs run: | diff --git a/.github/workflows/benchmark_commits.yml b/.github/workflows/benchmark_commits.yml index 30c50097584..b1b599ee341 100644 --- a/.github/workflows/benchmark_commits.yml +++ b/.github/workflows/benchmark_commits.yml @@ -45,9 +45,9 @@ jobs: - name: Install deps run: | - yum update -y - yum remove -y 'gcc-toolset-13-*' - 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 \ + dnf update -y + dnf remove -y 'gcc-toolset-13-*' + 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 \ unzip tar epel-release jq wget libcurl-devel python3 \ python3-devel python3-pip perl-IPC-Cmd @@ -58,9 +58,9 @@ jobs: 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 echo "/opt/rh/devtoolset-10/root/usr/bin" | tee -a $GITHUB_PATH - yum install -y mono-complete + dnf install -y mono-complete - yum clean all + dnf clean all # We are changing the python here because we want to use the default python to build (it is devel version) # and this python for the rest of the testing diff --git a/.github/workflows/build_steps.yml b/.github/workflows/build_steps.yml index bc418e5ff9a..28f73a7ac62 100644 --- a/.github/workflows/build_steps.yml +++ b/.github/workflows/build_steps.yml @@ -87,9 +87,9 @@ jobs: - name: Install deps if: matrix.os == 'linux' && inputs.job_type != 'build-python-wheels' run: | - yum update -y - yum remove -y 'gcc-toolset-13-*' - 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 \ + dnf update -y + dnf remove -y 'gcc-toolset-13-*' + 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 \ unzip tar epel-release jq wget libcurl-devel python3 \ python3-devel python3-pip perl-IPC-Cmd @@ -100,9 +100,9 @@ jobs: 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 echo "/opt/rh/devtoolset-10/root/usr/bin" | tee -a $GITHUB_PATH - yum install -y mono-complete + dnf install -y mono-complete - yum clean all + dnf clean all - name: Configure sccache