-
-
Notifications
You must be signed in to change notification settings - Fork 9
36 lines (31 loc) · 880 Bytes
/
build.yaml
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
#--------------------------------------------------------------------
# Copyright (c) 2021 James O. D. Hunt <[email protected]>.
#
# SPDX-License-Identifier: GPL-3.0-or-later
#--------------------------------------------------------------------
name: Build procenv in GitHub Actions build environment
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: |
sudo apt update -qq
sudo apt install -y \
automake \
autopoint \
check \
expat \
libapparmor-dev \
libcap-dev \
libnuma-dev \
libselinux1-dev
- name: Checkout code
uses: actions/checkout@v2
- name: Build
run: |
autoreconf -fi
./configure
make -j4
make check