From 38b5d3c3d41dd5d4d41e4abce66debeb7d7c4e10 Mon Sep 17 00:00:00 2001 From: sunrisepeak Date: Sat, 18 Jul 2026 23:55:48 +0800 Subject: [PATCH] =?UTF-8?q?chore:=20mcpp=200.0.97=20=E2=80=94=20drop=20apt?= =?UTF-8?q?-nasm=20workaround=20(mcpp#232=20fixed)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - .xlings.json: xim:mcpp 0.0.95 -> 0.0.97 (carries #226/#227/#228/#229/#232/ #233/#234/#235 fixes + default-namespace index redirect) - ci.yml: remove the host nasm install step; 0.0.97 bootstraps nasm synchronously via the toolchain-style gate (mcpp#232), and the CI run itself is the cold-environment proof. --- .github/workflows/ci.yml | 7 +++---- .xlings.json | 6 +++--- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a3f2cd8..527c5a5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,10 +23,9 @@ jobs: - name: Checkout uses: actions/checkout@v4 - # mcpp resolves nasm PATH-first; ubuntu-24.04 ships nasm >= 2.16. - - name: Install nasm - run: sudo apt-get update && sudo apt-get install -y nasm && nasm --version - + # No host nasm needed: mcpp >= 0.0.97 provisions nasm through the same + # synchronous gate as the toolchain (index refresh + install + payload + # check BEFORE the build plans, mcpp#232). - name: Install Xlings env: XLINGS_NON_INTERACTIVE: 1 diff --git a/.xlings.json b/.xlings.json index 8ccd038..a5885cf 100644 --- a/.xlings.json +++ b/.xlings.json @@ -1,5 +1,5 @@ { - "workspace": { - "xim:mcpp": "0.0.95" - } + "workspace": { + "xim:mcpp": "0.0.97" + } }