singe/thirdparty/openssl/wycheproof/kokoro/presubmit.sh
2023-11-16 22:15:24 -06:00

13 lines
172 B
Bash

#!/bin/bash
# Fail on any error.
set -e
# Display commands to stderr.
set -x
# Change to repo root
cd git*/wycheproof
# Building should work.
bazel build ... || exit 1