From 75b55e493509d263eaeb4ad3782b936bbca66faf Mon Sep 17 00:00:00 2001 From: cat Date: Thu, 19 Feb 2026 17:44:34 +0300 Subject: [PATCH] compile nano x2 --- .forgejo/workflows/test.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml index 22e29d2..30acc7f 100644 --- a/.forgejo/workflows/test.yml +++ b/.forgejo/workflows/test.yml @@ -16,15 +16,17 @@ jobs: - name: install packages and prepare source run: | pacman -Sy wget base-devel --noconfirm - wget https://www.nano-editor.org/dist/v8/nano-8.6.tar.xz - tar -xvf nano-8.6.tar.xz + wget https://www.nano-editor.org/dist/v8/nano-8.7.1.tar.xz + tar -xvf nano-8.7.1.tar.xz - name: compile nano run: | - cd nano-8.6 - ./configure --prefix=/usr \ + cd nano-8.7.1 + ./configure --prefix=/usr \ --sysconfdir=/etc \ - --enable-utf8 + --enable-color \ + --enable-nanorc \ + --enable-multibuffer make -j$(nproc) make install