Skip to content

Commit 7f05dd9

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. Differential Revision: D61007764
1 parent 5bada47 commit 7f05dd9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.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)