Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Corrects gettext code and adds dependency required by CI (Travis) #398

Merged
merged 2 commits into from
Nov 25, 2024

Adds dependencies for Engine that must be listed for CI. See zonemast…

b65d5f5
Select commit
Loading
Failed to load commit list.
Merged

Corrects gettext code and adds dependency required by CI (Travis) #398

Adds dependencies for Engine that must be listed for CI. See zonemast…
b65d5f5
Select commit
Loading
Failed to load commit list.
Travis CI / Travis CI - Pull Request succeeded Nov 23, 2024 in 4m 32s

Build Passed

The build passed, just like the previous build.

Details

This is a pull request build.

It is running a build against the merge commit, after merging #398 Corrects gettext code and adds dependency required by CI (Travis).
Any changes that have been made to the develop branch before the build ran are also included.

Jobs and Stages

This build has three jobs, running in parallel.

Job Perl OS State
830.1 5.38 Linux passed
830.2 5.34 Linux passed
830.3 5.26 Linux passed

Build Configuration

Build Option Setting
Language Perl
Operating System Linux (Jammy)
Perl Versions 5.38, 5.34, 5.26
Build Configuration
{
  "language": "perl",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "group": "previous",
  "perl": [
    "5.38",
    "5.34",
    "5.26"
  ],
  "addons": {
    "apt": {
      "packages": [
        "autoconf",
        "automake",
        "build-essential",
        "cpanminus",
        "libclone-perl",
        "libdevel-checklib-perl",
        "libextutils-pkgconfig-perl",
        "libfile-sharedir-perl",
        "libfile-slurp-perl",
        "libidn2-dev",
        "libintl-perl",
        "libjson-pp-perl",
        "liblist-compare-perl",
        "liblist-moreutils-perl",
        "liblocale-msgfmt-perl",
        "libmail-rfc822-address-perl",
        "libmail-spf-perl",
        "libmodule-find-perl",
        "libnet-ip-perl",
        "libpod-coverage-perl",
        "libreadonly-xs-perl",
        "libssl-dev",
        "libtest-differences-perl",
        "libtest-exception-perl",
        "libtest-fatal-perl",
        "libtest-pod-perl",
        "libtext-csv-perl",
        "libtool",
        "m4",
        "libtry-tiny-perl"
      ]
    }
  },
  "before_install": [
    "export PERL5LIB=/usr/share/perl5",
    "eval \"$(curl https://travis-perl.github.io/init)\" --auto",
    "cpan-install Module::Install Module::Install::XSUtil",
    "cpan-install Socket6 IO::Socket::INET6",
    "git clone --depth=1 --branch=$TRAVIS_BRANCH https://github.com/zonemaster/zonemaster-ldns.git",
    "( cd zonemaster-ldns && cpanm --verbose --notest --configure-args=\"--no-ed25519\" . ) && rm -rf zonemaster-ldns",
    "git clone --depth=1 --branch=$TRAVIS_BRANCH https://github.com/zonemaster/zonemaster-engine.git",
    "( cd zonemaster-engine && cpanm --verbose --notest . ) && rm -rf zonemaster-engine",
    "if [[ ! -e /usr/include/sys/ ]]; then sudo mkdir /usr/include/sys/; fi",
    "if [[ ! -e /usr/include/bits/ && -e /usr/include/x86_64-linux-gnu/bits/ ]]; then sudo ln -s /usr/include/x86_64-linux-gnu/bits/ /usr/include/bits; fi",
    "if [[ ! -e /usr/include/sys/socket.h ]]; then sudo ln -s /usr/include/bits/socket.h /usr/include/sys/socket.h; fi"
  ]
}