From ad6c65868ce17bf53eda08771351b328fb7cdb10 Mon Sep 17 00:00:00 2001 From: Aapo Alasuutari Date: Tue, 16 Sep 2025 16:07:04 +0300 Subject: [PATCH 1/2] fix(ci): Change build invocation to match Boa --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index be82ecb38..a2861f2a8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -46,11 +46,11 @@ jobs: - name: Install the rust toolchain uses: dtolnay/rust-toolchain@stable with: - toolchain: 1.85.0 + toolchain: stable targets: ${{ matrix.rust-target }} - name: Build - run: cargo build --release --target ${{ matrix.rust-target }} --manifest-path ./nova_cli/Cargo.toml + run: cargo build --release --target ${{ matrix.rust-target }} --bin nova_cli - name: Prepare binary shell: bash From 252d47a6542bc675382c34a4bac7af94bd06144e Mon Sep 17 00:00:00 2001 From: Aapo Alasuutari Date: Tue, 16 Sep 2025 16:29:24 +0300 Subject: [PATCH 2/2] feat: Update to 1.89 toolchain --- rust-toolchain.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 7855e6d55..908d2ecba 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,3 +1,3 @@ [toolchain] -channel = "1.88.0" +channel = "1.89.0" components = ["rustfmt", "clippy"]