blob: d215b44559870e383a1ee5ba010e7f6141e2f0ec [file] [log] [blame]
#!/bin/bash
# Copyright 2022 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
set -e
# This script is used by infra to validate the package can be built and tests
# can pass.
main() {
third_party/sdk-integration/tools/bazel build --config=fuchsia_x64 src:samples_repository
scripts/smoke_test.sh --no-build
echo "Everything build and all tests passed."
}
main "$@"