workflowtest/.forgejo/workflows/test.yml
cat 75b55e4935
Some checks failed
compile nano / compile-nano (push) Failing after 55s
compile nano x2
2026-02-19 17:44:34 +03:00

34 lines
No EOL
709 B
YAML

name: compile nano
on:
push:
branches:
- main
jobs:
compile-nano:
runs-on: archlinux-latest
container:
image: archlinux:latest
steps:
- 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
- name: compile nano
run: |
cd nano-8.7.1
./configure --prefix=/usr \
--sysconfdir=/etc \
--enable-color \
--enable-nanorc \
--enable-multibuffer
make -j$(nproc)
make install
- name: run nano
run: nano