| author | |
| committer | |
| log | 9a637f81e021cacd8e38be6793a86b01ef735704 |
| tree | 7380391e8b357fd66d1b8e318f0c62a4ef6f35c9 |
| parent | 3e389d01ed13374aa3a362dfa505eb00718b318c |
2 files changed, 2 insertions(+), 18 deletions(-)
ci/azure/linux_script+1-9| ... | @@ -65,17 +65,9 @@ make $JOBS install | ... | @@ -65,17 +65,9 @@ make $JOBS install |
| 65 | cmake .. -DZIG_EXECUTABLE="$(pwd)/release/bin/zig" | 65 | cmake .. -DZIG_EXECUTABLE="$(pwd)/release/bin/zig" |
| 66 | make $JOBS install | 66 | make $JOBS install |
| 67 | 67 | ||
| 68 | set +x | ||
| 69 | LOG=$(mktemp) | ||
| 70 | for step in test-toolchain test-std docs; do | 68 | for step in test-toolchain test-std docs; do |
| 71 | echo "* Running step: [$step]" | 69 | release/bin/zig build $step -Denable-qemu -Denable-wasmtime |
| 72 | if ! release/bin/zig build $step -Denable-qemu -Denable-wasmtime 2>"$LOG" >&2; then | ||
| 73 | cat "$LOG" >&2 | ||
| 74 | exit 1 | ||
| 75 | fi | ||
| 76 | echo " Done." | ||
| 77 | done | 70 | done |
| 78 | set -x | ||
| 79 | 71 | ||
| 80 | # Look for HTML errors. | 72 | # Look for HTML errors. |
| 81 | tidy -qe ../zig-cache/langref.html | 73 | tidy -qe ../zig-cache/langref.html |
ci/azure/macos_script+1-9| ... | @@ -55,17 +55,9 @@ make $JOBS install | ... | @@ -55,17 +55,9 @@ make $JOBS install |
| 55 | cmake .. -DZIG_EXECUTABLE="$(pwd)/release/bin/zig" -DZIG_TARGET_MCPU="x86_64_v2" | 55 | cmake .. -DZIG_EXECUTABLE="$(pwd)/release/bin/zig" -DZIG_TARGET_MCPU="x86_64_v2" |
| 56 | make $JOBS install | 56 | make $JOBS install |
| 57 | 57 | ||
| 58 | set +x | ||
| 59 | LOG=$(mktemp) | ||
| 60 | for step in test-toolchain test-std docs; do | 58 | for step in test-toolchain test-std docs; do |
| 61 | echo "* Running step: [$step]" | 59 | release/bin/zig build $step |
| 62 | if ! release/bin/zig build $step 2>"$LOG" >&2; then | ||
| 63 | cat "$LOG" >&2 | ||
| 64 | exit 1 | ||
| 65 | fi | ||
| 66 | echo " Done." | ||
| 67 | done | 60 | done |
| 68 | set -x | ||
| 69 | 61 | ||
| 70 | if [ "${BUILD_REASON}" != "PullRequest" ]; then | 62 | if [ "${BUILD_REASON}" != "PullRequest" ]; then |
| 71 | mv ../LICENSE release/ | 63 | mv ../LICENSE release/ |