Skip to content

gi: refactor

gi: refactor #922

Workflow file for this run

name: build
on:
push:
branches:
- '**'
paths:
- src/**
- Makefile
- .github/**
pull_request:
branches:
- '**'
paths:
- src/**
- Makefile
- .github/**
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: dep
run: |
sudo apt-get update --fix-missing
sudo apt-get -y install libmagic-dev moreutils libbsd-dev cargo libncurses5-dev libncursesw5-dev ncurses-bin
git submodule update --init --recursive
env:
SHELL_VERBOSE: 1
- name: build
run: |
cd src/ || exit 1
./.make install
./.make uninstall
env:
SHELL_VERBOSE: 1
- name: sudo-build
run: |
cd src/ || exit 1
sudo ./.make install
env:
SHELL_VERBOSE: 1
- name: test
run: |
cd src/ || exit 1
./.make test
env:
SHELL_VERBOSE: 1
- name: sudo-test
run: |
cd src/ || exit 1
sudo ./.make test
env:
SHELL_VERBOSE: 1