Skip to content

Commit

Permalink
IDK
Browse files Browse the repository at this point in the history
  • Loading branch information
Georgi Petrov committed Nov 27, 2024
1 parent 9fdf578 commit 239e74e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/analysis_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,9 @@ jobs:
unzip tar epel-release jq wget libcurl-devel python3 \
python3-devel python3-pip perl-IPC-Cmd
echo CMAKE_C_COMPILER=/opt/rh/gcc-toolset-10/root/bin/gcc | tee -a $GITHUB_ENV
echo CMAKE_CXX_COMPILER=/opt/rh/gcc-toolset-10/root/bin/g++ | tee -a $GITHUB_ENV
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:${LD_LIBRARY_PATH} | tee -a $GITHUB_ENV
echo CC=/opt/rh/gcc-toolset-10/root/bin/gcc | tee -a $GITHUB_ENV
echo CXX=/opt/rh/gcc-toolset-10/root/bin/g++ | tee -a $GITHUB_ENV
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
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/benchmark_commits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,9 @@ jobs:
unzip tar epel-release jq wget libcurl-devel python3 \
python3-devel python3-pip perl-IPC-Cmd
echo CMAKE_C_COMPILER=/opt/rh/gcc-toolset-10/root/bin/gcc | tee -a $GITHUB_ENV
echo CMAKE_CXX_COMPILER=/opt/rh/gcc-toolset-10/root/bin/g++ | tee -a $GITHUB_ENV
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:${LD_LIBRARY_PATH} | tee -a $GITHUB_ENV
echo CC=/opt/rh/gcc-toolset-10/root/bin/gcc | tee -a $GITHUB_ENV
echo CXX=/opt/rh/gcc-toolset-10/root/bin/g++ | tee -a $GITHUB_ENV
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
Expand Down
16 changes: 9 additions & 7 deletions .github/workflows/build_steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,6 @@ jobs:
with:
submodules: recursive # Just in case a dep has its own third-party deps

- name: Configure sccache
uses: mozilla-actions/[email protected]
with:
version: "v0.4.0"

- name: Windows Pagefile
if: matrix.os == 'windows'
Expand All @@ -97,15 +93,21 @@ jobs:
unzip tar epel-release jq wget libcurl-devel python3 \
python3-devel python3-pip perl-IPC-Cmd
echo CMAKE_C_COMPILER=/opt/rh/gcc-toolset-10/root/bin/gcc | tee -a $GITHUB_ENV
echo CMAKE_CXX_COMPILER=/opt/rh/gcc-toolset-10/root/bin/g++ | tee -a $GITHUB_ENV
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:${LD_LIBRARY_PATH} | tee -a $GITHUB_ENV
echo CC=/opt/rh/gcc-toolset-10/root/bin/gcc | tee -a $GITHUB_ENV
echo CXX=/opt/rh/gcc-toolset-10/root/bin/g++ | tee -a $GITHUB_ENV
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
yum clean all
- name: Configure sccache
uses: mozilla-actions/[email protected]
with:
version: "v0.4.0"

- name: Extra envs
# This has to come after msvc-dev-cmd to overwrite the bad VCPKG_ROOT it sets
run: |
Expand Down

0 comments on commit 239e74e

Please sign in to comment.