[llvm] [workflows] Use /mnt as the build directory on Linux (PR #80583)
Tom Stellard via llvm-commits
llvm-commits at lists.llvm.org
Sat Feb 3 21:50:03 PST 2024
================
@@ -104,8 +104,15 @@ jobs:
PKG_CONFIG_PATH: /usr/local/Homebrew/Library/Homebrew/os/mac/pkgconfig//12
shell: bash
run: |
+ if [ "${{ runner.os }}" == "Linux" ]; then
+ builddir="/mnt/build/"
+ sudo mkdir -p $builddir
----------------
tstellar wrote:
The /mnt directory is owned by root:
https://github.com/tstellar/llvm-project/actions/runs/7772011497/job/21193943451
https://github.com/llvm/llvm-project/pull/80583
More information about the llvm-commits
mailing list