From 3f1620a60c1fe139fc929f53af333c6e06fd1766 Mon Sep 17 00:00:00 2001 From: cat Date: Thu, 19 Feb 2026 17:47:13 +0300 Subject: [PATCH] compile zsh --- .forgejo/workflows/test.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml index 30acc7f..4d84ad5 100644 --- a/.forgejo/workflows/test.yml +++ b/.forgejo/workflows/test.yml @@ -1,4 +1,4 @@ -name: compile nano +name: compile zsh on: push: @@ -6,7 +6,7 @@ on: - main jobs: - compile-nano: + compile-zsh: runs-on: archlinux-latest container: image: archlinux:latest @@ -16,19 +16,19 @@ jobs: - name: install packages and prepare source run: | pacman -Sy wget base-devel --noconfirm - wget https://www.nano-editor.org/dist/v8/nano-8.7.1.tar.xz - tar -xvf nano-8.7.1.tar.xz + wget https://www.zsh.org/pub/zsh-5.9.tar.xz + tar -xvf zsh-5.9.tar.xz - - name: compile nano + - name: compile zsh run: | - cd nano-8.7.1 - ./configure --prefix=/usr \ - --sysconfdir=/etc \ - --enable-color \ - --enable-nanorc \ - --enable-multibuffer + cd zsh-5.9 + ./configure --prefix=/usr \ + --sysconfdir=/etc/zsh \ + --enable-etcdir=/etc/zsh \ + --enable-cap \ + --enable-gdbm make -j$(nproc) make install - name: run nano - run: nano \ No newline at end of file + run: zsh \ No newline at end of file