authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2018-11-05 09:46:31-05:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2018-11-05 09:46:31-05:00
loge64e8d62ddf87e4665be73d95156e902a4b26d5b
tree798a12964451155bb28ce36bf40ff82745875ed6
parent9b0fb8a912907cd79a1ddc493e10c66e38532638
signaturelock-open Commit is signed but in an unrecognized format.

ci: display environment variables


4 files changed, 4 insertions(+), 3 deletions(-)

ci/azure/linux_script+1-1
......@@ -20,7 +20,7 @@ mkdir build
2020cd build
2121cmake .. -DCMAKE_BUILD_TYPE=Release
2222make -j2 install
23./zig build --build-file ../build.zig test
23./zig build --build-file ../build.zig test-behavior -Dskip-release
2424
2525if [ "${BUILD_REASON}" != "PullRequest" ]; then
2626 ARTIFACTSDIR="$BUILDDIR/artifacts"
ci/azure/macos_script+1-1
......@@ -77,7 +77,7 @@ mkdir build
7777cd build
7878cmake .. -DCMAKE_BUILD_TYPE=Release -DCMAKE_PREFIX_PATH=$PREFIX -DCMAKE_INSTALL_PREFIX=$(pwd)/release -DZIG_STATIC=ON
7979make $JOBS install
80release/bin/zig build --build-file ../build.zig test
80release/bin/zig build --build-file ../build.zig docs
8181
8282if [ "${BUILD_REASON}" != "PullRequest" ]; then
8383 mv ../LICENSE release/
ci/azure/update_download_page+1
......@@ -24,6 +24,7 @@ export SRC_BYTESIZE=$(wc -c < $SRC_TARBALL)
2424git clone https://github.com/ziglang/www.ziglang.org --depth 1
2525cd www.ziglang.org
2626export MASTER_DATE=$(date +%Y-%m-%d)
27env
2728"../$ZIG" run update-download-page.zig
2829
2930mv "$DOWNLOADSECUREFILE_SECUREFILEPATH" "$HOME/.s3cfg"
ci/azure/windows_script.bat+1-1
......@@ -20,7 +20,7 @@ cd %ZIGBUILDDIR%
2020cmake.exe .. -Thost=x64 -G"Visual Studio 15 2017 Win64" "-DCMAKE_INSTALL_PREFIX=%ZIGINSTALLDIR%" "-DCMAKE_PREFIX_PATH=%ZIGPREFIXPATH%" -DCMAKE_BUILD_TYPE=Release || exit /b
2121msbuild /p:Configuration=Release INSTALL.vcxproj || exit /b
2222
23"%ZIGINSTALLDIR%\bin\zig.exe" build --build-file ..\build.zig test || exit /b
23"%ZIGINSTALLDIR%\bin\zig.exe" build --build-file ..\build.zig docs || exit /b
2424
2525set "PATH=%CD:~0,2%\msys64\usr\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem"
2626SET "MSYSTEM=MINGW64"