-
Notifications
You must be signed in to change notification settings - Fork 32
45 lines (42 loc) · 1.25 KB
/
guile2.2.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
name: GNU Guile 2.2
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-22.04
steps:
- name: Install dependencies
run: |
sudo apt update
sudo apt install automake autoconf libtool pkg-config make gcc
sudo apt install guile-2.2 guile-2.2-libs guile-2.2-dev
sudo apt install texinfo texlive
- name: Checkout repository
uses: actions/checkout@v2
- name: Autogen
run: ./autogen.sh
- name: Configure
run: ./configure
- name: Make distribution
run: make distcheck
build-libevent:
runs-on: ubuntu-22.04
steps:
- name: Install dependencies
run: |
sudo apt update
sudo apt install automake autoconf libtool pkg-config make gcc
sudo apt install guile-2.2 guile-2.2-libs guile-2.2-dev
sudo apt install gettext texinfo texlive
sudo apt install libevent-dev
- name: Checkout repository
uses: actions/checkout@v2
- name: Autogen
run: ./autogen.sh
- name: Configure
run: ./configure --disable-epoll
- name: Make distribution
run: make distcheck DISTCHECK_CONFIGURE_FLAGS=--disable-epoll