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 70 71
|
This is an autogenerated patch header for a single-debian-patch file. The
delta against upstream is either kept as a single patch, or maintained
in some VCS, and exported as a single patch instead of more manageable
atomic patches.
--- /dev/null
+++ libmedia-convert-perl-1.0.4/.gitlab-ci.yml
@@ -0,0 +1,55 @@
+---
+include:
+- https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/recipes/debian.yml
+
+stages:
+- upstream
+- provisioning
+- build
+- publish
+- test
+
+.test: &test
+ stage: upstream
+ image: $CI_JOB_NAME
+ coverage: '/^Total.* (\d+.\d+)$/'
+ before_script:
+ - cpanm ExtUtils::Depends Devel::Cover TAP::Harness::JUnit
+ - apt-get update && apt-get -y --no-install-recommends install ffmpeg
+ - cpanm --notest --installdeps .
+ - perl Makefile.PL
+ script:
+ - cover -delete
+ - HARNESS_PERL_SWITCHES='-MDevel::Cover' prove -v -l -s --harness TAP::Harness::JUnit
+ - cover
+ artifacts:
+ paths:
+ - cover_db
+ reports:
+ junit: junit_output.xml
+
+perl:latest:
+ <<: *test
+
+perl:5.24:
+ <<: *test
+
+test:committed:
+ stage: upstream
+ image: perl:latest
+ before_script:
+ - apt-get update && apt-get -y --no-install-recommends install git ffmpeg
+ - cpanm ExtUtils::Depends
+ - cpanm --notest --installdeps .
+ - perl Makefile.PL
+ script:
+ - make manifest
+ - git diff --exit-code
+
+test:critic:
+ stage: upstream
+ image: perl:latest
+ before_script:
+ - cpanm Perl::Critic
+ script:
+ - perlcritic .
--- libmedia-convert-perl-1.0.4.orig/MANIFEST
+++ libmedia-convert-perl-1.0.4/MANIFEST
@@ -37,5 +37,3 @@ t/script.t
t/testvids/bbb.mp4
t/testvids/m-c.png
t/testvids/m-c.svg
-META.yml Module YAML meta-data (added by MakeMaker)
-META.json Module JSON meta-data (added by MakeMaker)
|