~m-grant-prg/mget/jammy

« back to all changes in this revision

Viewing changes to .travis.yml

  • Committer: Mark Grant
  • Date: 2021-03-05 14:16:36 UTC
  • mto: This revision was merged to the branch mainline in revision 40.
  • Revision ID: m.grant.prg@gmail.com-20210305141636-pek25hxm0mj9ftt6
Tags: upstream-1.1.15+rc1
ImportĀ upstreamĀ versionĀ 1.1.15+rc1

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#########################################################################
2
 
#                                                                       #
3
 
# File ID: ./.travis.yml                                                #
4
 
# Author: Copyright (C) 2019  Mark Grant                                #
5
 
#                                                                       #
6
 
# Released under the GPLv3 only.                                        #
7
 
# SPDX-License-Identifier: GPL-3.0                                      #
8
 
#                                                                       #
9
 
# Configuration file for Travis CI build tests.                         #
10
 
#                                                                       #
11
 
#########################################################################
12
 
 
13
 
#########################################################################
14
 
#                                                                       #
15
 
# Changelog                                                             #
16
 
#                                                                       #
17
 
# Date          Author  Version Description                             #
18
 
#                                                                       #
19
 
# 02/09/2019    MG      1.0.1   Initial release.                        #
20
 
#                               Minimum required build environment is   #
21
 
#                               os: - linux, dist: - xenial but this is #
22
 
#                               now the default, so no specifics.       #
23
 
#                                                                       #
24
 
#########################################################################
25
 
 
26
 
 
27
 
language: bash
28
 
 
29
 
before_install:
30
 
    - sudo add-apt-repository ppa:m-grant-prg/utils -y
31
 
    - sudo apt-get update
32
 
    - sudo apt-get install -y txt2man txt2manwrap
33
 
 
34
 
script:
35
 
    - autoreconf -if .
36
 
    - ./configure --enable-silent-rules=yes
37
 
    - make --quiet
38
 
    - make --quiet check
39
 
    - make --quiet distcheck
40