[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 22:00:58 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:
Interesting. Approach seems fine to me then.
Would be really nice if Github wouldn't use this weird layout for their hosted runners, but I guess it is what it is.
https://github.com/llvm/llvm-project/pull/80583
More information about the llvm-commits
mailing list