Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: bump toolchain to nightly-2024-03-12 #15722

Merged
merged 45 commits into from
May 15, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
3f47d55
fix use of btree cursor api
stdrc Feb 1, 2024
0ef75ea
remove stablized features
xxchan Feb 3, 2024
02c9d5d
update is_sorted_by api
xxchan Feb 3, 2024
bdca242
trigger ci on push
xxchan Feb 3, 2024
2a6cb2a
fix split_array and btree_cursors
xxchan Feb 3, 2024
427d75e
fix btree_cursor for over_window
xxchan Feb 3, 2024
0d4316a
bump hashbrown, ahash, crc32c, curve25519-dalek to fix SIMD
xxchan Feb 23, 2024
e5a4a97
fix "non-defining opaque type use in defining scope" in metrics
xxchan Mar 17, 2024
601e35e
bump
xxchan Mar 17, 2024
6c1cfc5
fix storage compile error according to the compiler's suggestion (I H…
xxchan Mar 18, 2024
03d923e
Merge remote-tracking branch 'origin/main' into xxchan/latest-nightly…
MrCroxx Apr 11, 2024
d55b9f7
fix: upgrade jsonbb to fix panic
MrCroxx Apr 11, 2024
5263667
Merge remote-tracking branch 'origin/main' into xxchan/latest-nightly…
MrCroxx Apr 11, 2024
2316d96
chore: remove reduntant uses
MrCroxx Apr 11, 2024
6281c7d
chore: fix more fmt`
MrCroxx Apr 11, 2024
b450502
chore: i mean, more
MrCroxx Apr 11, 2024
0372b40
chore: fix more
MrCroxx Apr 11, 2024
2d86e89
chore: bump toolchain to nightly-2024-04-12
MrCroxx Apr 12, 2024
819cbca
remove stable feature `associated_type_bounds`
stdrc Apr 16, 2024
a897e54
fix btree cursor use in over_partition
stdrc Apr 16, 2024
ef6eb21
fix lints
xxchan Apr 18, 2024
d4dbe20
Merge branch 'main' into xxchan/latest-nightly-rust
xxchan Apr 18, 2024
84d7681
lint
xxchan Apr 18, 2024
e87c4e0
resolve comment
xxchan Apr 18, 2024
2df472a
bump ci image
xxchan Apr 18, 2024
802ff0e
lint
xxchan Apr 18, 2024
e663132
fix
xxchan Apr 18, 2024
50600bf
fix GHA disk out of space
xxchan Apr 19, 2024
9cb8888
update madsim
wangrunji0408 Apr 19, 2024
f684b05
Merge branch 'main' into xxchan/latest-nightly-rust
xxchan Apr 21, 2024
210ea3b
fix clippy
xxchan Apr 22, 2024
6689da1
more recent toolchain
xxchan Apr 22, 2024
59fa2e0
chore: try something new
MrCroxx Apr 24, 2024
a9ffd0d
downgrade to 2024-03-12
bakjos May 14, 2024
237219b
Merge branch 'main' into xxchan/latest-nightly-rust
xxchan May 14, 2024
955ee2b
fix lints
xxchan May 14, 2024
85bcba8
Merge branch 'main' into xxchan/latest-nightly-rust
xxchan May 14, 2024
ed09ac7
fix lints
xxchan May 14, 2024
9cc432a
fix dylint
xxchan May 14, 2024
f24e0d2
fix dylint
xxchan May 14, 2024
3b4259d
fix lint
xxchan May 14, 2024
9efed19
fix lints
xxchan May 14, 2024
8a9b4a8
one last fix
xxchan May 14, 2024
723e23a
fix test
zwang28 May 15, 2024
c0df28b
fix test
wangrunji0408 May 15, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
3 changes: 0 additions & 3 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,3 @@ rustflags = [
# Flags for all targets.
[target.'cfg(all())']
rustflags = ["--cfg", "tokio_unstable"]

[unstable]
lints = true
25 changes: 15 additions & 10 deletions .github/workflows/nightly-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,22 +5,25 @@ name: Build with Latest Nightly Rust
on:
schedule:
- cron: "0 0 * * *"
push:
branches:
- xxchan/latest-nightly-rust
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Maximize build space
uses: easimon/maximize-build-space@master
with:
remove-dotnet: 'true'
remove-android: 'true'
remove-haskell: 'true'
remove-codeql: 'true'
remove-docker-images: 'true'
root-reserve-mb: 2048
swap-size-mb: 8192
- name: Maximize build space
uses: easimon/maximize-build-space@master
with:
remove-dotnet: 'true'
remove-android: 'true'
remove-haskell: 'true'
remove-codeql: 'true'
remove-docker-images: 'true'
root-reserve-mb: 10240
temp-reserve-mb: 10240
- uses: actions/checkout@v3
if: ${{ github.event_name == 'schedule' }}
with:
Expand All @@ -40,3 +43,5 @@ jobs:
export CARGO_INCREMENTAL=0
export CARGO_PROFILE_DEV_DEBUG=false
cargo check
- name: Show available storage
run: df -h
Loading
Loading