-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adapt the unit test action to not use a docker image.
- Loading branch information
Showing
19 changed files
with
138 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,46 +1,61 @@ | ||
FROM ubuntu:20.04 | ||
|
||
# the following are needed to make sure the timezone packages don't ask for your timezone. | ||
# The following are needed to make sure the timezone packages don't ask for your timezone. | ||
ENV DEBIAN_FRONTEND noninteractive | ||
ENV DEBCONF_NONINTERACTIVE_SEEN true | ||
ENV HARNESS_PERL_SWITCHES -MDevel::Cover | ||
|
||
RUN apt-get update && \ | ||
apt-get install -qy --no-install-recommends --no-install-suggests \ | ||
build-essential=12.8ubuntu1 \ | ||
ca-certificates=20210119~20.04.1 \ | ||
ca-certificates=20211016~20.04.1 \ | ||
cpanminus=1.7044-1 \ | ||
git=1:2.25.1-1ubuntu3.1 \ | ||
git=1:2.25.1-1ubuntu3.5 \ | ||
libarray-utils-perl=0.5-1 \ | ||
libcanary-stability-perl=2006-2 \ | ||
libcapture-tiny-perl=0.48-1 \ | ||
libclass-accessor-lite-perl=0.08-1 \ | ||
libclone-perl=0.43-2 \ | ||
libcommon-sense-perl=3.74-2build6 \ | ||
libcpanel-json-xs-perl=4.19-1build1 \ | ||
libcrypt-ssleay-perl=0.73.06-1build3 \ | ||
libdata-dump-perl=1.23-1 \ | ||
libdatetime-format-strptime-perl=1.7600-1 \ | ||
libdbd-mysql-perl=4.050-3 \ | ||
# libdbd-mysql-perl=4.050-3 \ | ||
libdbd-sqlite3-perl=1.64-1build1 \ | ||
libdbix-class-perl=0.082841-1 \ | ||
libdbix-class-inflatecolumn-serializer-perl=0.09-1 \ | ||
libdbix-class-perl=0.082841-1 \ | ||
libdbix-dbschema-perl=0.45-1 \ | ||
libdevel-cover-perl=1.33-1build1 \ | ||
libexception-class-perl=1.44-1 \ | ||
libextutils-config-perl=0.008-2 \ | ||
libextutils-helpers-perl=0.026-1 \ | ||
libextutils-installpaths-perl=0.012-1 \ | ||
libfurl-perl=3.13-2 \ | ||
libhttp-parser-xs-perl=0.17-1build5 \ | ||
libimporter-perl=0.025-1 \ | ||
libio-socket-ssl-perl=2.067-1 \ | ||
libjson-perl=4.02000-2 \ | ||
libjson-xs-perl=4.020-1build1 \ | ||
libmodule-build-tiny-perl=0.039-1 \ | ||
libnet-ssleay-perl=1.88-2ubuntu1 \ | ||
libsql-translator-perl=1.60-1 \ | ||
libssl-dev=1.1.1f-1ubuntu2.5 \ | ||
libssl-dev=1.1.1f-1ubuntu2.16 \ | ||
libtest-exception-perl=0.43-1 \ | ||
libtest-harness-perl=3.42-2 \ | ||
libtext-csv-perl=2.00-1 \ | ||
libtry-tiny-perl=0.30-1 \ | ||
libtypes-serialiser-perl=1.0-1 \ | ||
libyaml-libyaml-perl=0.81+repack-1 \ | ||
# mariadb-server=1:10.3.31-0ubuntu0.20.04.1 \ # if desired to use a full database | ||
openssl=1.1.1f-1ubuntu2.5 && \ | ||
openssl=1.1.1f-1ubuntu2.16 && \ | ||
rm -rf /var/lib/apt/lists/* && \ | ||
cpanm --notest \ | ||
DBIx::Class::DynamicSubclass \ | ||
Mojolicious \ | ||
Mojolicious::Plugin::NotYAMLConfig \ | ||
Mojolicious::Plugin::DBIC \ | ||
Mojolicious::Plugin::Authentication \ | ||
Mojolicious::Plugin::DBIC \ | ||
Mojolicious::Plugin::NotYAMLConfig \ | ||
Devel::Cover::Report::Codecov | ||
|
||
ENTRYPOINT ["/bin/bash"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.