-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add support for release-plz Signed-off-by: Moritz Hoffmann <[email protected]> * Only publish differential-dataflow and differential-dogs3 Signed-off-by: Moritz Hoffmann <[email protected]> * Separate changelogs Signed-off-by: Moritz Hoffmann <[email protected]> * Fix tests Signed-off-by: Moritz Hoffmann <[email protected]> --------- Signed-off-by: Moritz Hoffmann <[email protected]>
- Loading branch information
Showing
19 changed files
with
85 additions
and
24 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,8 @@ | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
# Check for updates every Monday | ||
schedule: | ||
interval: "weekly" | ||
|
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,27 @@ | ||
name: Release-plz | ||
|
||
permissions: | ||
pull-requests: write | ||
contents: write | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
release-plz: | ||
name: Release-plz | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Install Rust toolchain | ||
uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
- name: Run release-plz | ||
uses: MarcoIeni/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
CARGO_REGISTRY_TOKEN: ${{ secrets.DIFFERENTIAL_RELEASE_PLZ }} |
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 |
---|---|---|
|
@@ -2,7 +2,8 @@ | |
name = "advent_of_code_2017" | ||
version = "0.1.0" | ||
authors = ["Frank McSherry <[email protected]>"] | ||
publish = false | ||
|
||
[dependencies] | ||
differential-dataflow = { path = "../" } | ||
timely = { git = "https://github.com/frankmcsherry/timely-dataflow" } | ||
timely = { git = "https://github.com/frankmcsherry/timely-dataflow" } |
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,5 +1,5 @@ | ||
[package] | ||
name = "dogsdogsdogs" | ||
name = "differential-dogs3" | ||
version = "0.1.0" | ||
authors = ["Frank McSherry <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -8,8 +8,7 @@ edition = "2021" | |
[dependencies] | ||
timely = { workspace = true } | ||
differential-dataflow = { path = "../", default-features = false } | ||
serde = "1" | ||
serde_derive = "1" | ||
serde = { version = "1.0", features = ["derive"]} | ||
|
||
[dev-dependencies] | ||
graph_map = "0.1" | ||
|
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 |
---|---|---|
|
@@ -3,8 +3,9 @@ name = "doop" | |
version = "0.1.0" | ||
authors = ["Frank McSherry <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
[dependencies] | ||
indexmap = "2.1" | ||
timely = {workspace = true} | ||
differential-dataflow = { path = "../" } | ||
differential-dataflow = { path = "../" } |
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ name = "experiments" | |
version = "0.1.0" | ||
authors = ["Frank McSherry <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
[dependencies] | ||
core_affinity = "0.5.9" | ||
|
@@ -11,4 +12,4 @@ rand="0.3.13" | |
timely = { workspace = true } | ||
differential-dataflow = { path = "../" } | ||
graph_map = { git = "https://github.com/frankmcsherry/graph-map" } | ||
serde = { version = "1.0.190", features = ["derive"] } | ||
serde = { version = "1.0", features = ["derive"] } |
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 |
---|---|---|
|
@@ -3,11 +3,12 @@ name = "interactive" | |
version = "0.1.0" | ||
authors = ["Frank McSherry <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
[dependencies] | ||
bincode = "1" | ||
serde = { version = "1", features = ["derive"]} | ||
differential-dataflow = { path = "../" } | ||
dogsdogsdogs = { path = "../dogsdogsdogs" } | ||
timely = { git = "https://github.com/TimelyDataflow/timely-dataflow", features = ["bincode"] } | ||
#timely = { path = "../../timely-dataflow/timely", features = ["bincode"] } | ||
#timely = { path = "../../timely-dataflow/timely", features = ["bincode"] } |
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,19 @@ | ||
[workspace] | ||
# disable the changelog for all packages | ||
changelog_update = false | ||
# disable releasing all packages | ||
release = false | ||
|
||
[[package]] | ||
name = "differential-dataflow" | ||
# enable releasing package | ||
release = true | ||
# enable the changelog for this package | ||
changelog_update = true | ||
|
||
[[package]] | ||
name = "differential-dogs3" | ||
# enable releasing package | ||
release = true | ||
# enable the changelog for this package | ||
changelog_update = true |
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ name = "dd_server" | |
version = "0.1.0" | ||
authors = ["Frank McSherry <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
[dependencies.differential-dataflow] | ||
path="../" | ||
|
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 |
---|---|---|
|
@@ -3,11 +3,12 @@ name = "degr_dist" | |
version = "0.1.0" | ||
authors = ["Frank McSherry <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
[dependencies] | ||
timely = { workspace = true } | ||
differential-dataflow = { path = "../../../" } | ||
dd_server = { path = "../../" } | ||
|
||
[lib] | ||
crate-type = ["dylib"] | ||
crate-type = ["dylib"] |
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 |
---|---|---|
|
@@ -3,10 +3,11 @@ name = "neighborhood" | |
version = "0.1.0" | ||
authors = ["Frank McSherry <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
[dependencies] | ||
differential-dataflow = { path = "../../../" } | ||
dd_server = { path = "../../" } | ||
|
||
[lib] | ||
crate-type = ["dylib"] | ||
crate-type = ["dylib"] |
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ name = "random_graph" | |
version = "0.1.0" | ||
authors = ["Frank McSherry <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
[dependencies] | ||
timely = {workspace = true} | ||
|
@@ -13,4 +14,4 @@ rand="0.3.13" | |
hdrhist = { git = "https://github.com/utaal/hdrhist" } | ||
|
||
[lib] | ||
crate-type = ["dylib"] | ||
crate-type = ["dylib"] |
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 |
---|---|---|
|
@@ -3,10 +3,11 @@ name = "reachability" | |
version = "0.1.0" | ||
authors = ["Frank McSherry <[email protected]>"] | ||
edition = "2021" | ||
publish = false | ||
|
||
[dependencies] | ||
differential-dataflow = { path = "../../../" } | ||
dd_server = { path = "../../" } | ||
|
||
[lib] | ||
crate-type = ["dylib"] | ||
crate-type = ["dylib"] |