diff --git a/.woodpecker/.build-perls.yml b/.woodpecker/.build-perls.yml new file mode 100644 index 0000000..f370d0a --- /dev/null +++ b/.woodpecker/.build-perls.yml @@ -0,0 +1,28 @@ +depends_on: + - "base-os" + - "generate-perl" + +matrix: + PERL_VERSION: + - 5.20.3 + PERL_OPTIONS: + - "" + - ",threaded" + - ",longdouble" + - ",quadmath" + # - ",debugging" + # - ",longdouble,threaded" + # - ",quadmath,threaded" + # - ",debugging,threaded" + # - ",debugging,longdouble,threaded" + # - ",debugging,quadmath,threaded" + # - ",debugging,longdouble" + # - ",debugging,quadmath" + +steps: + build: + image: perl:stable + commands: + - echo matrix test! + - find output/ +