forked from zonemaster/zonemaster-ldns
-
Notifications
You must be signed in to change notification settings - Fork 0
49 lines (41 loc) · 1.05 KB
/
manifest.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
name: CI
on:
push:
branches:
- develop
- master
- 'releases/**'
- '**'
pull_request:
branches:
- develop
- master
- 'releases/**'
jobs:
manifest:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: shogo82148/actions-setup-perl@v1
with:
perl-version: '5.38'
# - name: apt install
# run: sudo apt install -y libidn2-dev
#
- name: cpan module
run: cpanm Module::Install Devel::CheckLib #Module::Install::XSUtil Test::Fatal
#
# - name: installation
# run: cpanm --verbose --notest --configure-args="--no-ed25519" .
- name: make
run: |
perl Makefile.PL
make dist
- name: check manifest
run: |
output=$(make distcheck 2>&1 >/dev/null)
if [ -n "$output" ]; then
echo "some file are not in MANIFEST or MANIFEST.SKIP"
make distcheck
exit 1
fi