Commit 9a637f81e0
Changed files (2)
ci
ci/azure/linux_script
@@ -65,17 +65,9 @@ make $JOBS install
cmake .. -DZIG_EXECUTABLE="$(pwd)/release/bin/zig"
make $JOBS install
-set +x
-LOG=$(mktemp)
for step in test-toolchain test-std docs; do
- echo "* Running step: [$step]"
- if ! release/bin/zig build $step -Denable-qemu -Denable-wasmtime 2>"$LOG" >&2; then
- cat "$LOG" >&2
- exit 1
- fi
- echo " Done."
+ release/bin/zig build $step -Denable-qemu -Denable-wasmtime
done
-set -x
# Look for HTML errors.
tidy -qe ../zig-cache/langref.html
ci/azure/macos_script
@@ -55,17 +55,9 @@ make $JOBS install
cmake .. -DZIG_EXECUTABLE="$(pwd)/release/bin/zig" -DZIG_TARGET_MCPU="x86_64_v2"
make $JOBS install
-set +x
-LOG=$(mktemp)
for step in test-toolchain test-std docs; do
- echo "* Running step: [$step]"
- if ! release/bin/zig build $step 2>"$LOG" >&2; then
- cat "$LOG" >&2
- exit 1
- fi
- echo " Done."
+ release/bin/zig build $step
done
-set -x
if [ "${BUILD_REASON}" != "PullRequest" ]; then
mv ../LICENSE release/