-
Notifications
You must be signed in to change notification settings - Fork 4
44 lines (40 loc) · 1.01 KB
/
ubuntu-16.04-latest.yml
File metadata and controls
44 lines (40 loc) · 1.01 KB
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
name: Ubuntu 16.04 (latest)
on:
pull_request:
push:
branches:
- master
- 'release/**'
workflow_dispatch:
schedule:
- cron: '0 0 1,15 * *'
jobs:
tests:
runs-on: ubuntu-latest
if: "!contains(github.event.head_commit.message, 'skip ci')"
container:
image: ubuntu:16.04
strategy:
matrix:
env:
- SCRIPT: all_latest
env: ${{ matrix.env }}
timeout-minutes: 70
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Set up build environment
run: |
SUDO=
! command -v sudo >/dev/null || SUDO=sudo
$SUDO apt-get update
$SUDO apt-get -y install \
sudo \
git \
autoconf automake libtool bison \
libncurses5-dev libncursesw5-dev libbz2-dev libz-dev \
libgnutls28-dev bzip2 make gettext texinfo gnutls-bin build-essential g++
- name: Build GPG
run: |
bash -x "./examples/${SCRIPT}.sh"