| author | |
| committer | |
| log | 527055a8215b23a13fb407bdeba2908b8206f6f0 |
| tree | ca67a166d11d8094451140fcdd8e0efb9d0107fa |
| parent | 75d5a4b9a255895246762f27399e14821bc0e768 |
Workaround for #126855 files changed, 5 insertions(+), 7 deletions(-)
ci/azure/macos_script+1-1| ... | ... | @@ -49,7 +49,7 @@ unset CXX |
| 49 | 49 | make $JOBS install |
| 50 | 50 | |
| 51 | 51 | stage3-release/bin/zig build test docs \ |
| 52 | --zig-lib-dir ../lib \ | |
| 52 | --zig-lib-dir "$(pwd)/../lib" \ | |
| 53 | 53 | -Denable-macos-sdk \ |
| 54 | 54 | -Dstatic-llvm \ |
| 55 | 55 | --search-prefix "$PREFIX" |
ci/azure/pipelines.yml-2| ... | ... | @@ -60,7 +60,6 @@ jobs: |
| 60 | 60 | displayName: 'Build' |
| 61 | 61 | |
| 62 | 62 | - pwsh: | |
| 63 | Set-Variable -Name ZIGLIBDIR -Value "$(Get-Location)\lib" | |
| 64 | 63 | Set-Variable -Name ZIGINSTALLDIR -Value "$(Get-Location)\stage3-release" |
| 65 | 64 | |
| 66 | 65 | function CheckLastExitCode { |
| ... | ... | @@ -72,7 +71,6 @@ jobs: |
| 72 | 71 | |
| 73 | 72 | & "$ZIGINSTALLDIR\bin\zig.exe" build test docs ` |
| 74 | 73 | --search-prefix "$ZIGPREFIXPATH" ` |
| 75 | --zig-lib-dir "$ZIGLIBDIR" ` | |
| 76 | 74 | -Dstatic-llvm ` |
| 77 | 75 | -Dskip-non-native ` |
| 78 | 76 | -Dskip-stage2-tests |
ci/srht/freebsd_script+1-1| ... | ... | @@ -56,7 +56,7 @@ ZIG_LIBC="$ZIG_LIBC_TXT" samu install |
| 56 | 56 | |
| 57 | 57 | # Here we skip some tests to save time. |
| 58 | 58 | stage3/bin/zig build test docs \ |
| 59 | --zig-lib-dir ../lib \ | |
| 59 | --zig-lib-dir "$(pwd)/../lib" \ | |
| 60 | 60 | -Dstatic-llvm \ |
| 61 | 61 | --search-prefix "$PREFIX" \ |
| 62 | 62 | -Dskip-stage1 \ |
ci/zinc/linux_test_stage3_debug+1-1| ... | ... | @@ -56,7 +56,7 @@ stage3/bin/zig build test \ |
| 56 | 56 | -Dstatic-llvm \ |
| 57 | 57 | -Dtarget=native-native-musl \ |
| 58 | 58 | --search-prefix "$DEPS_LOCAL" \ |
| 59 | --zig-lib-dir ../lib | |
| 59 | --zig-lib-dir "$(pwd)/../lib" | |
| 60 | 60 | |
| 61 | 61 | # Explicit exit helps show last command duration. |
| 62 | 62 | exit |
ci/zinc/linux_test_stage3_release+2-2| ... | ... | @@ -41,14 +41,14 @@ ninja install |
| 41 | 41 | -Dstatic-llvm \ |
| 42 | 42 | -Dtarget=native-native-musl \ |
| 43 | 43 | --search-prefix "$DEPS_LOCAL" \ |
| 44 | --zig-lib-dir ../lib | |
| 44 | --zig-lib-dir "$(pwd)/../lib" | |
| 45 | 45 | |
| 46 | 46 | # Produce the experimental std lib documentation. |
| 47 | 47 | mkdir -p "$RELEASE_STAGING/docs/std" |
| 48 | 48 | "$RELEASE_STAGING/bin/zig" test ../lib/std/std.zig \ |
| 49 | 49 | -femit-docs=$RELEASE_STAGING/docs/std \ |
| 50 | 50 | -fno-emit-bin \ |
| 51 | --zig-lib-dir ../lib | |
| 51 | --zig-lib-dir "$(pwd)/../lib" | |
| 52 | 52 | |
| 53 | 53 | cp ../LICENSE $RELEASE_STAGING/ |
| 54 | 54 | cp ../zig-cache/langref.html $RELEASE_STAGING/docs/ |