-
Notifications
You must be signed in to change notification settings - Fork 352
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add quantile trees and deprecate order statistics in C++
C++: - Add an interface for multiple quantiles, supported by Quantile Trees - Mark OrderStatistics as deprecated in favor of the new quantile implementation Go & Privacy on Beam: - Various fixes and improvements for CI with the `go` tool Privacy on Beam: - Improve instructions for depending on the library with Bazel - Fix typos in DistinctPerKey tests Accounting: - Add a function to conveniently create PLD for Discrete Laplace, Discrete Gaussian and Gaussian Mechanisms GitOrigin-RevId: 958acb2199902126d3d333dd8d1da150fa281911 Change-Id: I89de361be98dcc6da9675d5730f5b06bb7c59a31
- Loading branch information
1 parent
e149618
commit 8d1c557
Showing
32 changed files
with
3,773 additions
and
108 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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: Go | ||
|
||
on: | ||
push: | ||
branches-ignore: | ||
# Version 1.0 does not work with the "go" tool properly. | ||
- "1.0" | ||
pull_request: | ||
branches-ignore: | ||
# Version 1.0 does not work with the "go" tool properly. | ||
- "1.0" | ||
schedule: | ||
# Every Thursday at 1PM UTC | ||
- cron: "0 13 * * 4" | ||
|
||
jobs: | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 15 | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v2 | ||
with: | ||
go-version: 1.16 | ||
|
||
- name: Build go | ||
run: go build -mod=mod -v ./... | ||
working-directory: ./go | ||
|
||
- name: Test go | ||
run: go test -mod=mod -v ./... | ||
working-directory: ./go | ||
|
||
- name: Build examples/go | ||
run: go build -mod=mod -v ./... | ||
working-directory: ./examples/go | ||
|
||
- name: Build privacy-on-beam | ||
run: go build -mod=mod -v ./... | ||
working-directory: ./privacy-on-beam | ||
|
||
- name: Test privacy-on-beam | ||
run: go test -mod=mod -v ./... | ||
working-directory: ./privacy-on-beam |
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
Oops, something went wrong.