From 267eb49b892965416d332281cadac12314affbe1 Mon Sep 17 00:00:00 2001 From: cat Date: Wed, 18 Feb 2026 15:08:47 +0300 Subject: [PATCH] fastfetch from source --- .forgejo/workflows/test.yml | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml index 046188d..1f94ed0 100644 --- a/.forgejo/workflows/test.yml +++ b/.forgejo/workflows/test.yml @@ -1,4 +1,4 @@ -name: pizdec neofetch +name: fastfetch from source on: push: @@ -13,10 +13,16 @@ jobs: steps: - - name: download neofetch + - name: prepare source run: | - curl -Lo neofetch https://raw.githubusercontent.com/dylanaraps/neofetch/refs/heads/master/neofetch - chmod +x neofetch + pacman -S cmake git base-devel make pkgconf -y + git clone https://github.com/fastfetch-cli/fastfetch - - name: neofetch - run: ./neofetch \ No newline at end of file + - name: compiling + run: | + mkdir -p build + cd build + cmake .. + cmake --build . --target fastfetch + - name: run fastfetch + run: ./fastfetch \ No newline at end of file