Skip to content

Commit 9f9b53b

Browse files
Use $HOME variable to find Conda binaries instead of hard-coded path (#3743)
Summary: Pull Request resolved: #3743 This fixes containerized builds that will be needed for ROCm. Reviewed By: junjieqi Differential Revision: D61007764 fbshipit-source-id: 11fa8dc3641a85d4c220832bedf0f6d62ae49426
1 parent 11c15af commit 9f9b53b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/actions/build_cmake/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ runs:
107107
sudo ln -s /lib/x86_64-linux-gnu/libc.so.6 /lib64/libc.so.6
108108
sudo ln -s /lib/x86_64-linux-gnu/libc_nonshared.a /usr/lib64/libc_nonshared.a
109109
sudo ln -s /usr/lib/x86_64-linux-gnu/libpthread.so.0 /lib64/libpthread.so.0
110-
sudo ln -s /home/runner/miniconda3/x86_64-conda-linux-gnu/sysroot/usr/lib64/libpthread_nonshared.a /usr/lib64/libpthread_nonshared.a
110+
sudo ln -s $HOME/miniconda3/x86_64-conda-linux-gnu/sysroot/usr/lib64/libpthread_nonshared.a /usr/lib64/libpthread_nonshared.a
111111
- name: Build all targets
112112
shell: bash
113113
run: |

0 commit comments

Comments
 (0)