-
-
Notifications
You must be signed in to change notification settings - Fork 13
46 lines (44 loc) · 1.07 KB
/
guile3.0.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
name: Ubuntu/Guile 3.0
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: |
sudo apt -qy install \
guile-3.0 \
guile-3.0-libs \
guile-3.0-dev \
guile-library \
texinfo \
libssh-dev \
libtool \
texlive \
gettext \
make \
automake \
autoconf \
gcc
- uses: actions/checkout@v2
- name: Autoreconf
run: autoreconf -vif
- name: Configure
run: ./configure
- name: Build
run: make -j$(nproc)
- name: Run tests
run: make -j$(nproc) check
- name: Make distribution
run: make -j$(nproc) distcheck
- name: Upload the artifact
id: upload-artifact
uses: actions/upload-artifact@v4
with:
name: guile-ssh
compression-level: 0
path: "guile-ssh-*.tar.gz"