Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nigel Kukard
smradius
Commits
fdbe1dff
Commit
fdbe1dff
authored
Sep 11, 2016
by
Nigel Kukard
Browse files
More CI changes
parent
e2ed4f95
Changes
6
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
fdbe1dff
...
...
@@ -8,7 +8,7 @@ code:
-
export DEBIAN_FRONTEND=noninteractive
-
apt-get update
-
apt-get dist-upgrade -y
-
apt-get install -y libperl-critic-perl
-
apt-get install -y libperl-critic-perl
make
-
perlcritic --gentle "$CI_PROJECT_DIR"
tests
:
...
...
@@ -17,8 +17,10 @@ tests:
-
export DEBIAN_FRONTEND=noninteractive
-
apt-get update
-
apt-get dist-upgrade -y
-
apt-get install -y git
-
apt-get install -y git
make
-
apt-get install -y mysql-server
-
cd "$CI_PROJECT_DIR"
-
./update-git-modules
-
perl Makefile.PL
-
make test
Makefile.PL
0 → 100644
View file @
fdbe1dff
# Makefile
# Copyright (C) 2014, 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
=>
'AWITPT'
,
VERSION_FROM
=>
"smradius/version.pm"
,
EXE_FILES
=>
[
qw
(
bin/smradiusd bin/smadmin bin/smradclient
)]
,
);
smadmin
→
bin/
smadmin
View file @
fdbe1dff
File moved
smradclient
→
bin/
smradclient
View file @
fdbe1dff
File moved
smradiusd
→
bin/
smradiusd
View file @
fdbe1dff
File moved
smradius/version.pm
View file @
fdbe1dff
...
...
@@ -27,13 +27,19 @@ require Exporter;
our
(
@ISA
,
@EXPORT
,
@EXPORT_OK
);
@ISA
=
qw(Exporter)
;
@EXPORT
=
qw(
$VERSION
VERSION
)
;
@EXPORT_OK
=
qw(
)
;
our
$VERSION
=
"
1.0.x
";
use
constant
{
VERSION
=>
"
1.0.x
",
};
sub
VERSION
{
return
$VERSION
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment