Skip to content

Commit

Permalink
Release 0.11.1 (2023-08-02)
Browse files Browse the repository at this point in the history
Bug: b/293901782
Change-Id: I4487c821883756599b3d66bb7774cc6585e653dc
GitOrigin-RevId: e8cd94de2dbb081a724e9700c98fc61bbd511687
  • Loading branch information
Privacy Sandbox Team authored and emmafu2022 committed Aug 3, 2023
1 parent e749e85 commit 5760192
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.

## 0.11.1 (2023-08-02)

## 0.11.0 (2023-07-11)


Expand Down
5 changes: 5 additions & 0 deletions production/packaging/aws/build_and_test
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ usage:
--with-ami AMI region in which to build and store AWS AMIs. Use multiple times to specify more than one region
If empty, none will be built
--no-precommit Skip precommit checks
--with-tests Also runs tests before building
environment variables (all optional):
WORKSPACE Set the path to the workspace (repo root)
Expand All @@ -66,6 +67,10 @@ while [[ $# -gt 0 ]]; do
BUILD_AND_TEST_ARGS+=("--no-precommit")
shift
;;
--with-tests)
BUILD_AND_TEST_ARGS+=("--with-tests")
shift
;;
--verbose)
BUILD_AND_TEST_ARGS+=("--verbose")
set -o xtrace
Expand Down
11 changes: 10 additions & 1 deletion production/packaging/build_and_test_all_in_docker
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ function _print_runtime() {
declare -i VERBOSE=0
declare -i PRECOMMIT_ONLY=0
declare -i SKIP_PRECOMMIT=0
declare -i RUN_TESTS=0
declare INSTANCE=local
declare PLATFORM=aws

Expand All @@ -54,6 +55,7 @@ usage:
--platform <type> Platform can be aws or local. Default: ${PLATFORM}
--precommit-only Run precommit then exit
--no-precommit Skip precommit checks
--with-tests Also runs tests before building
--verbose Enable verbose output
environment variables (all optional):
Expand Down Expand Up @@ -83,6 +85,10 @@ while [[ $# -gt 0 ]]; do
SKIP_PRECOMMIT=1
shift
;;
--with-tests)
RUN_TESTS=1
shift
;;
--with-ami)
printf -- "--with-ami flag has been removed. Instead use %s/production/packaging/aws/build_and_test.\n" "${WORKSPACE}" &>/dev/stderr
usage
Expand Down Expand Up @@ -137,7 +143,10 @@ function _collect_logs() {
bazel ${BAZEL_STARTUP_ARGS} info ${BAZEL_EXTRA_ARGS} bazel-testlogs 2>/dev/null | xargs rm -rf
bazel ${BAZEL_STARTUP_ARGS} build ${BAZEL_EXTRA_ARGS} //components/... //public/... //tools/...
bazel ${BAZEL_STARTUP_ARGS} test ${BAZEL_EXTRA_ARGS} --build_tests_only --test_size_filters=small //...
if [[ ${RUN_TESTS} -ne 0 ]]; then
printf 'Tests enabled. Running tests...'
bazel ${BAZEL_STARTUP_ARGS} test ${BAZEL_EXTRA_ARGS} --build_tests_only --test_size_filters=small //...
fi
bazel ${BAZEL_STARTUP_ARGS} run ${BAZEL_EXTRA_ARGS} //production/packaging/aws/data_server:copy_to_dist
bazel ${BAZEL_STARTUP_ARGS} run ${BAZEL_EXTRA_ARGS} //testing/functionaltest:copy_to_dist
"
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.11.0
0.11.1

0 comments on commit 5760192

Please sign in to comment.