From b4096513a4d97e807e2fae26ece386c2c90ecee0 Mon Sep 17 00:00:00 2001 From: cat Date: Wed, 18 Feb 2026 16:12:33 +0300 Subject: [PATCH] asciicaesar from source --- .forgejo/workflows/test.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.forgejo/workflows/test.yml b/.forgejo/workflows/test.yml index e13a726..cb5dd5c 100644 --- a/.forgejo/workflows/test.yml +++ b/.forgejo/workflows/test.yml @@ -1,4 +1,4 @@ -name: somefetch from source +name: asciicaesar from source on: push: @@ -6,7 +6,7 @@ on: - main jobs: - run-somefetch: + run-asciicaesar: runs-on: archlinux-latest container: image: archlinux:latest @@ -15,15 +15,15 @@ jobs: - name: prepare source run: | - pacman -Sy git rust --noconfirm - git clone https://github.com/OctoBanon-Main/somefetch + pacman -Sy git base-devel make --noconfirm + git clone https://github.com/honakac/asciicaesar - name: compiling run: | - cd somefetch - cargo build --release + cd asciicaesar + make - - name: run somefetch + - name: run asciicaesar run: | - cd somefetch - ./target/release/somefetch \ No newline at end of file + cd asciicaesar + ./asciicaesar -s 3 -i ' ,.!?' \ No newline at end of file