-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
### Features * [AWS] add example terraform directory with README * [GCP] add example terraform directory with README * Add bazel build flag --announce_rc * add build_flavor for AWS packaging * add build_flavor for packaging * include coordinator and attestation support for GCP * Upgrade build-system to release-0.30.1 ### Bug Fixes * Adjust SFE DCHECKs * bidding_service_test * Change PeriodicCodeFetcher to use std::string instead of absl::string_view in the parameters * refactor the test to share initialization * remove unnecessary flags * TEE<>TEE fix * temporarily eliminate requirement to have device signals to generate bids Bug: 280576012 Change-Id: I3e01b9e2872970105d6f27576b61e36c278edbc7 GitOrigin-RevId: fc4f950d441a6e0f5e0fb7e07365faf5bac07e0d
- Loading branch information
Showing
183 changed files
with
5,141 additions
and
2,254 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
build --announce_rc | ||
build --verbose_failures | ||
build --client_env=CC=clang | ||
build --cxxopt=-std=c++17 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/busybox sh | ||
|
||
set -o errexit | ||
|
||
install_ghz() { | ||
go install github.com/bojand/ghz/cmd/ghz@v0.114.0 | ||
ghz --help | ||
} | ||
|
||
install_cassowary() { | ||
go install github.com/rogerwelin/cassowary/cmd/cassowary@v0.16.0 | ||
cassowary --help | ||
} | ||
|
||
install_ghz | ||
install_cassowary |
Oops, something went wrong.