-
-
Notifications
You must be signed in to change notification settings - Fork 1
55 lines (53 loc) · 1.19 KB
/
build.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: Build
on:
push:
branches:
- '**'
paths:
- .make
- src/**
- Makefile
- .github/**
- test/**
pull_request:
branches:
- '**'
paths:
- .make
- src/**
- Makefile
- .github/**
- test/**
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install workflow dependencies
run: |
sudo apt-get update --fix-missing
sudo apt-get -y install libmagic-dev moreutils libbsd-dev cargo libncurses5-dev libncursesw5-dev ncurses-bin libxcursor-dev libxrandr-dev libxinerama-dev libxi-dev
git submodule update --init --recursive
env:
SHELL_VERBOSE: 1
- name: Compile and install executables
run: |
./.make install
./.make uninstall
env:
SHELL_VERBOSE: 1
- name: Compile and install executables as root
run: |
sudo ./.make install
env:
SHELL_VERBOSE: 1
- name: Test installed executables
run: |
./.make test
env:
SHELL_VERBOSE: 1
- name: Test installed executables as root
run: |
sudo ./.make test
env:
SHELL_VERBOSE: 1