Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
C
CONF
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
UvA
CONF
Commits
535f3c78
Commit
535f3c78
authored
Apr 23, 2020
by
Alfonso Orta
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
modify dockerfile to build java code
parent
f7a14e92
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
12 deletions
+14
-12
Dockerfile
bin/CI-docker/java/Dockerfile
+10
-3
clone_git.sh
bin/CI-docker/java/clone_git.sh
+1
-1
send_to_sonarqube.sh
bin/CI-docker/java/send_to_sonarqube.sh
+3
-8
No files found.
bin/CI-docker/java/Dockerfile
View file @
535f3c78
...
...
@@ -2,15 +2,22 @@ FROM maven:3.6.3-jdk-11
MAINTAINER
S. Koulouzis
ARG
SONAR_PROPERTIES_FILE=uva-conf.properties
# Install SonarQube Dependency
RUN
wget https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-4.2.0.1873-linux.zip
&&
\
unzip sonar-scanner-cli-4.2.0.1873-linux.zip
&&
\
mv
sonar-scanner-4.2.0.1873-linux /opt/sonar-scanner
COPY
clone_git.sh clone_git.sh
COPY
build.sh build.sh
COPY
send_to_sonarqube.sh send_to_sonarqube.sh
CMD
./clone_git.sh $BRANCH $GIT_URL $FOLDER_NAME && \
./build.sh $FOLDER_NAME && \
./send_to_sonarqube.sh $FOLDER_NAME $SONAR_HOST $SONAR_LOGIN
./send_to_sonarqube.sh $FOLDER_NAME $SONAR_HOST $SONAR_LOGIN
$SONAR_PROPERTIES_FILE
# docker build -t java_ci .
# docker run -it -e BRANCH=develop -e GIT_URL=https://gitlab.articonf.eu:4430/uva/conf.git -e FOLDER_NAME=conf
java_ci -e SONAR_HOST=host -e SONAR_LOGIN=secret
# docker build -t java_ci
-build-arg SONAR_PROPERTIES_FILE=uva-conf.properties
.
# docker run -it -e BRANCH=develop -e GIT_URL=https://gitlab.articonf.eu:4430/uva/conf.git -e FOLDER_NAME=conf
-e SONAR_HOST=https://sonar.articonf.eu/ -e SONAR_LOGIN= -e SONAR_PROPERTIES_FILE=uva-conf.properties -e FOLDER_NAME=conf java_ci
\ No newline at end of file
bin/CI-docker/java/clone_git.sh
View file @
535f3c78
...
...
@@ -5,4 +5,4 @@ BRANCH=$1
GIT_URL
=
$2
FOLDER_NAME
=
$3
git clone
-b
$BRANCH
$GIT_URL
git clone
-b
$BRANCH
$GIT_URL
$FOLDER_NAME
bin/CI-docker/java/send_to_sonarqube.sh
View file @
535f3c78
#!/bin/bash
SRC
=
$1
FOLDER_NAME
=
$1
SONAR_HOST
=
$2
SONAR_LOGIN
=
$3
SONAR_PROPERTIES_FILE
=
$4
cd
$SRC
for
i
in
$(
find
.
-name
target
)
;
do
# Not recommended, will break on whitespace
echo
"Sending
$i
"
done
/opt/sonar-scanner/bin/sonar-scanner
-X
-e
-D
sonar.host.url
=
$SONAR_HOST
-D
sonar.projectBaseDir
=
$FOLDER_NAME
-D
project.settings
=
$SONAR_PROPERTIES_FILE
-D
sonar.login
=
$SONAR_LOGIN
\ No newline at end of file
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