authorgravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2018-11-05 10:10:27-05:00
committergravatar for andrew@ziglang.orgAndrew Kelley <andrew@ziglang.org> 2018-11-05 10:10:27-05:00
log973e0abe79abf33cb5e9f4550fe323cb93eb6ee1
tree996e7f20e3114158eab4b5c015b061ff79dbb65c
parente64e8d62ddf87e4665be73d95156e902a4b26d5b
signature Commit is signed but in an unrecognized format.

ci: full test suite


3 files changed, 3 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-behavior -Dskip-release
23./zig build --build-file ../build.zig test
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 docs
80release/bin/zig build --build-file ../build.zig test
8181
8282if [ "${BUILD_REASON}" != "PullRequest" ]; then
8383 mv ../LICENSE release/
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 docs || exit /b
23"%ZIGINSTALLDIR%\bin\zig.exe" build --build-file ..\build.zig test || exit /b
2424
2525set "PATH=%CD:~0,2%\msys64\usr\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem"
2626SET "MSYSTEM=MINGW64"