Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
A
awit-ssh-client
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
allworldit
awit-ssh-client
Commits
0146597f
Commit
0146597f
authored
8 years ago
by
Nigel Kukard
Browse files
Options
Downloads
Patches
Plain Diff
Added in Makefile.PL and full CI integration support
parent
45c2930e
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
.gitlab-ci.yml
+25
-0
25 additions, 0 deletions
.gitlab-ci.yml
Makefile.PL
+29
-0
29 additions, 0 deletions
Makefile.PL
TODO
+1
-0
1 addition, 0 deletions
TODO
with
55 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
+
25
−
0
View file @
0146597f
stages
:
-
quality
-
tests
code
:
stage
:
quality
script
:
-
export DEBIAN_FRONTEND=noninteractive
-
apt-get update
-
apt-get dist-upgrade -y
-
apt-get install -y libperl-critic-perl make
-
perlcritic --gentle "$CI_PROJECT_DIR"
tests
:
stage
:
tests
script
:
-
export DEBIAN_FRONTEND=noninteractive
-
apt-get update
-
apt-get dist-upgrade -y
-
apt-get install -y make
-
apt-get install libconfig-inifiles-perl libio-socket-inet6-perl libnet-ldap-perl libio-prompt-perl
-
cd "$CI_PROJECT_DIR"
-
perl Makefile.PL
-
make test
This diff is collapsed.
Click to expand it.
Makefile.PL
0 → 100644
+
29
−
0
View file @
0146597f
# Makefile
# Copyright (C) 2014-2016, AllWorldIT
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
use
strict;
use
warnings;
use ExtUtils
::
MakeMaker;
WriteMakefile(
NAME
=>
'AWIT-SSH-Client'
,
VERSION_FROM
=>
"awit-ssh"
,
EXE_FILES
=>
[
qw
(
awit-ssh
)]
,
);
This diff is collapsed.
Click to expand it.
TODO
0 → 100644
+
1
−
0
View file @
0146597f
* This now needs proper perl POD documentation
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment