Skip to content

Commit

Permalink
Rust 1.83
Browse files Browse the repository at this point in the history
  • Loading branch information
c410-f3r committed Dec 6, 2024
1 parent 072b504 commit a0de4f2
Show file tree
Hide file tree
Showing 64 changed files with 953 additions and 245 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy-docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
echo `pwd`/mdbook >> $GITHUB_PATH
- name: Test and Build Book
run: |
rustup default nightly-2024-09-01
rustup default nightly-2024-10-13
cargo clean --target-dir mdbook-target
cargo build --all-features --target-dir mdbook-target
mdbook test -L mdbook-target/debug/deps wtx-docs && mdbook build wtx-docs
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
with:
override: true
profile: minimal
toolchain: nightly-2024-09-01
toolchain: nightly-2024-10-13
- uses: Swatinem/rust-cache@v2
- run: .scripts/autobahn-fuzzingclient.sh ci

Expand All @@ -25,7 +25,7 @@ jobs:
with:
override: true
profile: minimal
toolchain: nightly-2024-09-01
toolchain: nightly-2024-10-13
- uses: Swatinem/rust-cache@v2
- run: .scripts/autobahn-fuzzingserver.sh ci

Expand All @@ -37,7 +37,7 @@ jobs:
with:
override: true
profile: minimal
toolchain: nightly-2024-09-01
toolchain: nightly-2024-10-13
- uses: actions-rs/[email protected]
with:
crate: cargo-fuzz
Expand All @@ -52,7 +52,7 @@ jobs:
with:
override: true
profile: minimal
toolchain: nightly-2024-09-01
toolchain: nightly-2024-10-13
- uses: Swatinem/rust-cache@v2
- run: .scripts/h2spec.sh high ci

Expand All @@ -64,7 +64,7 @@ jobs:
with:
override: true
profile: minimal
toolchain: nightly-2024-09-01
toolchain: nightly-2024-10-13
- uses: Swatinem/rust-cache@v2
- run: .scripts/h2spec.sh low ci

Expand All @@ -76,7 +76,7 @@ jobs:
with:
override: true
profile: minimal
toolchain: nightly-2024-09-01
toolchain: nightly-2024-10-13
- uses: Swatinem/rust-cache@v2
- run: sudo apt install docker-compose -y
- run: docker-compose -f .test-utils/docker-compose.yml up -d
Expand All @@ -97,7 +97,7 @@ jobs:
components: clippy, rustfmt
override: true
profile: minimal
toolchain: nightly-2024-09-01
toolchain: nightly-2024-10-13
- uses: Swatinem/rust-cache@v2
- run: .scripts/internal-tests-0.sh

Expand All @@ -114,6 +114,6 @@ jobs:
components: clippy, rustfmt
override: true
profile: minimal
toolchain: nightly-2024-09-01
toolchain: nightly-2024-10-13
- uses: Swatinem/rust-cache@v2
- run: .scripts/internal-tests-1.sh
5 changes: 4 additions & 1 deletion .scripts/internal-tests-0.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
. "$(dirname "$0")/common.sh" --source-only

$rt rustfmt
$rt clippy -Aclippy::little-endian-bytes,-Aclippy::panic-in-result-fn
$rt clippy -Aclippy::little-endian-bytes,-Aclippy::panic-in-result-fn,-Aclippy::used_underscore_items

cargo miri test --features http2,postgres,web-socket -p wtx two_sta

Expand All @@ -13,6 +13,7 @@ $rt check-generic wtx
$rt test-with-features wtx aes-gcm
$rt test-with-features wtx arbitrary
$rt test-with-features wtx argon2
$rt test-with-features wtx aws-lc-rs,_hack
$rt test-with-features wtx base64
$rt test-with-features wtx borsh
$rt test-with-features wtx chrono
Expand All @@ -22,6 +23,7 @@ $rt test-with-features wtx crypto-common
$rt test-with-features wtx data-transformation
$rt test-with-features wtx database
$rt test-with-features wtx digest
$rt test-with-features wtx embassy-time
$rt test-with-features wtx fastrand
$rt test-with-features wtx flate2
$rt test-with-features wtx foldhash
Expand All @@ -42,6 +44,7 @@ $rt test-with-features wtx quick-protobuf
$rt test-with-features wtx rand_chacha
$rt test-with-features wtx ring
$rt test-with-features wtx rust_decimal
$rt test-with-features wtx rustls
$rt test-with-features wtx schema-manager
$rt test-with-features wtx schema-manager-dev
$rt test-with-features wtx serde
Expand Down
2 changes: 1 addition & 1 deletion .scripts/internal-tests-1.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cargo check --all-features --all-targets

# WTX Docs

rustup default nightly-2024-09-01
rustup default nightly-2024-10-13
cargo clean --target-dir mdbook-target
cargo build --all-features --target-dir mdbook-target
mdbook test -L mdbook-target/debug/deps wtx-docs
Loading

0 comments on commit a0de4f2

Please sign in to comment.