-
-
Notifications
You must be signed in to change notification settings - Fork 27
69 lines (66 loc) · 2.21 KB
/
release.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# This is a basic workflow to help you get started with Actions
name: Release Tests
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the main branch
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
ubuntu:
name: Release Tests on Ubuntu 20.04
runs-on: ubuntu-20.04
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Cache CPAN packages
uses: actions/cache@v2
with:
path: |
~/.perl-cpm/cache
~/.perl-cpm/builds
**/local/
key: ${{ runner.os }}-ubuntu-20.04
restore-keys: |
${{ runner.os }}-ubuntu-20.04
- name: apt install
run: |
sudo apt-get update
sudo apt-get -y dist-upgrade
sudo apt-get install --ignore-hold --allow-downgrades -y \
apache2 \
mariadb-client-10.3 \
netcat \
build-essential \
libapache2-mod-perl2 \
libapache2-mod-perl2-dev \
perlmagick \
graphviz \
curl libssl-dev zlib1g-dev openssl \
libexpat-dev cmake git libcairo-dev \
unzip wget
- name: cpm install
run: |
perl Makefile.PL
#make cpanfile GEN_CPANFILE_ARGS='-A'
perl -I$GITHUB_WORKSPACE/.github/cpm/lib/perl5 $GITHUB_WORKSPACE/.github/cpm/bin/cpm install \
&& tar -C $GITHUB_WORKSPACE \
--exclude 'local/cache/*' \
--exclude 'local/man/*' \
--exclude '*.pod' \
-zcvf local-lib.tar.gz local
- name: Save dependencies
uses: actions/upload-artifact@v2
with:
name: ubuntu-20.04-local-lib.tar.gz
path: local-lib.tar.gz
- name: Run Makefile.PL
run: 'perl Makefile.PL'
- name: Run checksetup
run: 'perl checksetup.pl --no-database --default-localconfig --no-templates'
- name: Run tests
run: 'prove -Ilocal/lib/perl5 t'