Skip to content

Commit baa9178

Browse files
authored
Merge branch 'next' into refactor/pm-config-catalog
2 parents 856e416 + e994e4a commit baa9178

29 files changed

Lines changed: 2785 additions & 463 deletions

.github/workflows/clippy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Install Rust
2020
uses: dtolnay/rust-toolchain@stable
2121
with:
22-
toolchain: nightly-2026-02-05
22+
toolchain: nightly-2026-02-18
2323
components: clippy
2424
# - name: Cache cargo
2525
# uses: Swatinem/rust-cache@v2

.github/workflows/format.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Install Rust
1818
uses: dtolnay/rust-toolchain@stable
1919
with:
20-
toolchain: nightly-2026-02-05
20+
toolchain: nightly-2026-02-18
2121
components: rustfmt
2222
- name: Check formatting
2323
run: cargo fmt --all -- --check

.github/workflows/pack-ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian
3030
test: |
3131
apt-get update &&
32-
rustup install nightly-2026-02-05 &&
33-
rustup default nightly-2026-02-05 &&
32+
rustup install nightly-2026-02-18 &&
33+
rustup default nightly-2026-02-18 &&
3434
rustup target add x86_64-unknown-linux-gnu &&
3535
cargo test -p pack-tests --target x86_64-unknown-linux-gnu
3636
- host: ubuntu-latest
@@ -43,8 +43,8 @@ jobs:
4343
echo "https://dl-cdn.alpinelinux.org/alpine/v3.21/community" >> /etc/apk/repositories &&
4444
apk update &&
4545
apk add --no-cache libc6-compat pkgconfig dav1d libdav1d dav1d-dev clang-static llvm-dev &&
46-
rustup install nightly-2026-02-05 &&
47-
rustup default nightly-2026-02-05 &&
46+
rustup install nightly-2026-02-18 &&
47+
rustup default nightly-2026-02-18 &&
4848
rustup target add x86_64-unknown-linux-musl &&
4949
export RUSTFLAGS='--cfg tokio_unstable -Zshare-generics=y -Zthreads=8 -Csymbol-mangling-version=v0 -Ctarget-feature=-crt-static' &&
5050
cargo test -p pack-tests --target x86_64-unknown-linux-musl
@@ -53,8 +53,8 @@ jobs:
5353
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian-aarch64
5454
test: |
5555
apt-get update && apt-get install -y libc6-dev-arm64-cross libgcc-s1-arm64-cross &&
56-
rustup install nightly-2026-02-05 &&
57-
rustup default nightly-2026-02-05 &&
56+
rustup install nightly-2026-02-18 &&
57+
rustup default nightly-2026-02-18 &&
5858
rustup target add aarch64-unknown-linux-gnu &&
5959
export QEMU_LD_PREFIX=/usr/aarch64-linux-gnu &&
6060
cargo test -p pack-tests --target aarch64-unknown-linux-gnu
@@ -68,8 +68,8 @@ jobs:
6868
echo "https://dl-cdn.alpinelinux.org/alpine/v3.21/community" >> /etc/apk/repositories &&
6969
apk update &&
7070
apk add --no-cache libc6-compat pkgconfig dav1d libdav1d dav1d-dev clang-static llvm-dev &&
71-
rustup install nightly-2026-02-05 &&
72-
rustup default nightly-2026-02-05 &&
71+
rustup install nightly-2026-02-18 &&
72+
rustup default nightly-2026-02-18 &&
7373
rustup target add aarch64-unknown-linux-musl &&
7474
export RUSTFLAGS='--cfg tokio_unstable -Zshare-generics=y -Zthreads=8 -Csymbol-mangling-version=v0' &&
7575
cargo test -p pack-tests --target aarch64-unknown-linux-musl
@@ -114,7 +114,7 @@ jobs:
114114
uses: dtolnay/rust-toolchain@stable
115115
if: ${{ !matrix.settings.docker }}
116116
with:
117-
toolchain: nightly-2026-02-05
117+
toolchain: nightly-2026-02-18
118118
targets: ${{ matrix.settings.target }}
119119
# - name: Cache cargo
120120
# uses: Swatinem/rust-cache@v2

.github/workflows/pack-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
- name: Setup Rust
4747
uses: dtolnay/rust-toolchain@master
4848
with:
49-
toolchain: nightly-2026-02-05
49+
toolchain: nightly-2026-02-18
5050
components: rustfmt, clippy
5151

5252
# - name: Rust Cache

.github/workflows/pack-perf.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Install Rust
4242
uses: dtolnay/rust-toolchain@stable
4343
with:
44-
toolchain: nightly-2026-02-05
44+
toolchain: nightly-2026-02-18
4545
components: rustfmt, clippy
4646

4747
# - name: Cache cargo

.github/workflows/pack-release.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian-aarch64
2424
build: |
2525
apt-get update && apt-get install -y libc6-dev-arm64-cross libgcc-s1-arm64-cross &&
26-
rustup install nightly-2026-02-05 &&
27-
rustup default nightly-2026-02-05 &&
26+
rustup install nightly-2026-02-18 &&
27+
rustup default nightly-2026-02-18 &&
2828
rustup target add aarch64-unknown-linux-gnu &&
2929
npm run build:binding --workspace=@utoo/pack -- --target aarch64-unknown-linux-gnu
3030
- host: ubuntu-latest
@@ -38,8 +38,8 @@ jobs:
3838
echo "https://dl-cdn.alpinelinux.org/alpine/v3.21/community" >> /etc/apk/repositories &&
3939
apk update &&
4040
apk add --no-cache libc6-compat pkgconfig dav1d libdav1d dav1d-dev clang-static llvm-dev &&
41-
rustup install nightly-2026-02-05 &&
42-
rustup default nightly-2026-02-05 &&
41+
rustup install nightly-2026-02-18 &&
42+
rustup default nightly-2026-02-18 &&
4343
rustup target add aarch64-unknown-linux-musl &&
4444
export RUSTFLAGS='--cfg tokio_unstable -Zshare-generics=y -Zthreads=8 -Zunstable-options -Csymbol-mangling-version=v0 -Clinker-flavor=gnu-lld-cc -Clink-self-contained=+linker' &&
4545
npm run build:binding --workspace=@utoo/pack -- --target aarch64-unknown-linux-musl
@@ -48,8 +48,8 @@ jobs:
4848
docker: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian
4949
build: |
5050
apt-get update &&
51-
rustup install nightly-2026-02-05 &&
52-
rustup default nightly-2026-02-05 &&
51+
rustup install nightly-2026-02-18 &&
52+
rustup default nightly-2026-02-18 &&
5353
rustup target add x86_64-unknown-linux-gnu &&
5454
npm run build:binding --workspace=@utoo/pack -- --target x86_64-unknown-linux-gnu
5555
- host: ubuntu-latest
@@ -63,8 +63,8 @@ jobs:
6363
echo "https://dl-cdn.alpinelinux.org/alpine/v3.21/community" >> /etc/apk/repositories &&
6464
apk update &&
6565
apk add --no-cache libc6-compat pkgconfig dav1d libdav1d dav1d-dev clang-static llvm-dev &&
66-
rustup install nightly-2026-02-05 &&
67-
rustup default nightly-2026-02-05 &&
66+
rustup install nightly-2026-02-18 &&
67+
rustup default nightly-2026-02-18 &&
6868
rustup target add x86_64-unknown-linux-musl &&
6969
export RUSTFLAGS='--cfg tokio_unstable -Zshare-generics=y -Zthreads=8 -Csymbol-mangling-version=v0' &&
7070
npm run build:binding --workspace=@utoo/pack -- --target x86_64-unknown-linux-musl
@@ -109,7 +109,7 @@ jobs:
109109
uses: dtolnay/rust-toolchain@stable
110110
if: ${{ !matrix.settings.docker }}
111111
with:
112-
toolchain: nightly-2026-02-05
112+
toolchain: nightly-2026-02-18
113113
targets: ${{ matrix.settings.target }}
114114
# - name: Cache cargo
115115
# uses: Swatinem/rust-cache@v2

.github/workflows/pm-bench.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
- name: Install Rust
7070
uses: dtolnay/rust-toolchain@stable
7171
with:
72-
toolchain: nightly-2026-02-05
72+
toolchain: nightly-2026-02-18
7373

7474
- name: Cache cargo
7575
uses: Swatinem/rust-cache@v2

.github/workflows/pm-ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
uses: dtolnay/rust-toolchain@stable
8888
if: ${{ !matrix.settings.docker }}
8989
with:
90-
toolchain: nightly-2026-02-05
90+
toolchain: nightly-2026-02-18
9191
targets: ${{ matrix.settings.target }}
9292

9393
# - name: Cache cargo
@@ -133,4 +133,4 @@ jobs:
133133
exit 1
134134
else
135135
echo "Tests passed or were skipped"
136-
fi
136+
fi

.github/workflows/pm-e2e.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ jobs:
6565
- name: Setup Rust toolchain
6666
uses: dtolnay/rust-toolchain@stable
6767
with:
68-
toolchain: nightly-2026-02-05
68+
toolchain: nightly-2026-02-18
6969
targets: ${{ matrix.settings.target }}
7070

7171
# - name: Cache cargo
@@ -213,4 +213,4 @@ jobs:
213213
exit 1
214214
else
215215
echo "Tests passed or were skipped"
216-
fi
216+
fi

.github/workflows/pm-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ jobs:
9494
- name: Install Rust
9595
uses: dtolnay/rust-toolchain@stable
9696
with:
97-
toolchain: nightly-2026-02-05
97+
toolchain: nightly-2026-02-18
9898
targets: ${{ matrix.target }}
9999

100100
# - name: Cache cargo

0 commit comments

Comments
 (0)