[llvm] [workflows] Use /mnt as the build directory on Linux (PR #80583)
Aiden Grossman via llvm-commits
llvm-commits at lists.llvm.org
Sat Feb 3 21:45:25 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
----------------
boomanaiden154 wrote:
Why are the additional permissions needed here?
https://github.com/llvm/llvm-project/pull/80583
More information about the llvm-commits
mailing list