forked from RotherOSS/otobo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue RotherOSS#32: store the cpanfile in git
Bust the Docker cache only after the dependencies have been installed
- Loading branch information
1 parent
00263eb
commit 4d52a0a
Showing
4 changed files
with
63 additions
and
11 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
cpanfile | ||
.git* | ||
.ssh | ||
build.log | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Do not change this file manually. | ||
# Instead adapt bin/otobo.CheckModules.pl and call | ||
# ./bin/otobo.CheckModules.pl --cpanfile > cpanfile | ||
|
||
requires 'Archive::Tar'; | ||
requires 'Archive::Zip'; | ||
requires 'Date::Format'; | ||
requires 'DateTime'; | ||
requires 'DBI'; | ||
requires 'Digest::SHA'; | ||
requires 'List::Util::XS'; | ||
requires 'LWP::UserAgent'; | ||
requires 'Net::DNS'; | ||
requires 'Template::Toolkit'; | ||
requires 'Template::Stash::XS'; | ||
requires 'Time::HiRes'; | ||
requires 'XML::LibXML'; | ||
requires 'YAML::XS'; | ||
|
||
feature 'mysql', 'Support for database MySQL' => sub { | ||
requires 'DBD::mysql'; | ||
}; | ||
|
||
feature 'odbc', 'Support for database access via ODBC' => sub { | ||
requires 'DBD::ODBC'; | ||
}; | ||
|
||
feature 'oracle', 'Support for database Oracle' => sub { | ||
requires 'DBD::Oracle'; | ||
}; | ||
|
||
feature 'plack', 'Suppport for plack' => sub { | ||
requires 'CGI::Emulate::PSGI'; | ||
requires 'Moo'; | ||
requires 'Plack'; | ||
requires 'Plack::App::File'; | ||
requires 'Plack::Middleware::Header'; | ||
requires 'Plack::Middleware::ForceEnv'; | ||
requires 'SOAP::Transport::HTTP::Plack'; | ||
requires 'Starman'; | ||
}; | ||
|
||
feature 'postgresql', 'Support for database PostgreSQL' => sub { | ||
requires 'DBD::Pg'; | ||
}; |