Skip to content

Commit 7cc8e0c

Browse files
authored
Merge branch 'main' into refactor-source-struct-format-encode
2 parents 1c82fd7 + 6833305 commit 7cc8e0c

File tree

807 files changed

+28074
-15325
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

807 files changed

+28074
-15325
lines changed

.config/hakari.toml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,9 @@ workspace-members = [
3434
]
3535
third-party = [
3636
{ name = "opendal" },
37+
# For some reasons, tikv-jemalloc-sys would be compiled twice if being added into `workspace-hack`
38+
{ name = "tikv-jemalloc-sys", git = "https://github.com/risingwavelabs/jemallocator.git", rev = "64a2d9" },
39+
{ name = "tikv-jemallocator", git = "https://github.com/risingwavelabs/jemallocator.git", rev = "64a2d9" },
3740
# These are solely dev-dependencies. Unifying them may slow down build.
3841
{ name = "criterion" },
3942
{ name = "console" },

.github/dependabot.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,10 @@ updates:
77
open-pull-requests-limit: 10
88
# Disable auto rebase to reduce cost. Use `@dependabot rebase` manually instead.
99
rebase-strategy: "disabled"
10-
10+
# Ignore patch to reduce spam. Manually run `cargo update` regularly instead.
11+
ignore:
12+
- dependency-name: "*"
13+
update-types: ["version-update:semver-patch"]
1114
# Create a group of dependencies to be updated together in one pull request
1215
groups:
1316
arrow:
@@ -16,3 +19,7 @@ updates:
1619
aws:
1720
patterns:
1821
- "aws*"
22+
tonic:
23+
patterns:
24+
- "tonic*"
25+
- "prost*"

.github/workflows/cherry-pick-to-release-branch.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ on:
66
types: ["closed", "labeled"]
77

88
jobs:
9-
release_pull_request_1_1:
10-
if: "contains(github.event.pull_request.labels.*.name, 'need-cherry-pick-v1.1') && github.event.pull_request.merged == true"
9+
release_pull_request_1_3:
10+
if: "contains(github.event.pull_request.labels.*.name, 'need-cherry-pick-v1.3') && github.event.pull_request.merged == true"
1111
runs-on: ubuntu-latest
1212
name: release_pull_request
1313
steps:
@@ -16,9 +16,9 @@ jobs:
1616
- name: Create PR to branch
1717
uses: risingwavelabs/github-action-cherry-pick@master
1818
with:
19-
pr_branch: 'v1.1-rc'
19+
pr_branch: 'v1.3-rc'
2020
pr_labels: 'cherry-pick'
21-
pr_body: ${{ format('Cherry picking \#{0} onto branch v1.1-rc', github.event.number) }}
21+
pr_body: ${{ format('Cherry picking \#{0} onto branch v1.3-rc', github.event.number) }}
2222
env:
2323
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2424

.github/workflows/doc.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,16 @@ jobs:
1414
build:
1515
runs-on: ubuntu-latest
1616
steps:
17+
- name: Maximize build space
18+
uses: easimon/maximize-build-space@master
19+
with:
20+
remove-dotnet: 'true'
21+
remove-android: 'true'
22+
remove-haskell: 'true'
23+
remove-codeql: 'true'
24+
remove-docker-images: 'true'
25+
root-reserve-mb: 10240
26+
temp-reserve-mb: 10240
1727
- uses: actions/checkout@v3
1828
- name: Setup Rust toolchain
1929
run: rustup show
@@ -30,6 +40,8 @@ jobs:
3040
3141
mkdir artifact
3242
cp -R target/doc/* artifact
43+
- name: Show available storage
44+
run: df -h
3345
- name: Install cargo-docset
3446
uses: taiki-e/install-action@v2
3547
with:
@@ -49,7 +61,8 @@ jobs:
4961
uses: actions/upload-pages-artifact@v1
5062
with:
5163
path: artifact
52-
64+
- name: Show available storage
65+
run: df -h
5366
deploy:
5467
needs: build
5568
permissions:

.github/workflows/nightly-rust.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
remove-haskell: 'true'
2020
remove-codeql: 'true'
2121
remove-docker-images: 'true'
22+
root-reserve-mb: 2048
2223
- uses: actions/checkout@v3
2324
- name: Setup Rust toolchain
2425
run: |

0 commit comments

Comments
 (0)