Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
core
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
minerva
core
Commits
56a2be11
Commit
56a2be11
authored
1 year ago
by
Piotr Gawron
Browse files
Options
Downloads
Patches
Plain Diff
war -> jar
parent
a6a66f8e
No related branches found
No related tags found
3 merge requests
!1700
Resolve "introduce new frontend to the jar file build process"
,
!1644
Draft: Resolve "cache drug/mirna/chemicals data in the background"
,
!1637
Resolve "remove tomcat requirement"
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+12
-40
12 additions, 40 deletions
.gitlab-ci.yml
with
12 additions
and
40 deletions
.gitlab-ci.yml
+
12
−
40
View file @
56a2be11
...
...
@@ -375,7 +375,7 @@ test:backend:web:hsql:
<<
:
*jdk_11_definition
script
:
*test_backend_web_definition
build_
w
ar
:
build_
j
ar
:
image
:
maven:3.8.6-jdk-8
stage
:
build
only
:
...
...
@@ -385,18 +385,20 @@ build_war:
artifacts
:
expire_in
:
1 day
paths
:
-
minerva.
w
ar
-
minerva.
j
ar
script
:
-
rm -rf /etc/minerva/
-
mkdir /etc/minerva/
-
cp test-hsql-db-ci.properties /etc/minerva/db.properties
-
apt-get update
-
DEBIAN_FRONTEND=noninteractive apt-get install -y curl gnupg git
ant
-
DEBIAN_FRONTEND=noninteractive apt-get install -y curl gnupg git
-
curl -sL https://deb.nodesource.com/setup_12.x | bash -
-
DEBIAN_FRONTEND=noninteractive apt-get install -y nodejs
-
ant maven-build-with-doc
-
cp web/target/*.war minerva.war
-
mvn clean compile install -DskipTests=true
-
cd web
-
mvn clean compile install package spring-boot:repackage
-
cp target/*exec.jar ../minerva.jar
test:dependency_conflict
:
image
:
maven:3.8.6-jdk-8
...
...
@@ -449,7 +451,7 @@ build_debian_package:
tags
:
-
privileged
dependencies
:
-
build_
w
ar
-
build_
j
ar
artifacts
:
# you cannot enforce never here yet
expire_in
:
1000 yrs
...
...
@@ -457,7 +459,7 @@ build_debian_package:
-
"
debian/*.deb"
script
:
-
mkdir web/target/
-
mv minerva.
w
ar web/target/
web-1.0.w
ar
-
mv minerva.
j
ar web/target/
minerva-exec.j
ar
-
apt-get update
-
DEBIAN_FRONTEND=noninteractive apt-get install -y dh-make build-essential lintian devscripts xsltproc fakeroot xsltproc docbook-xsl
-
export DEBFULLNAME="Piotr Gawron"
...
...
@@ -567,44 +569,13 @@ test_install_debian_package:
-
test 200 = $(curl -X POST -d "login=admin&password=admin" --write-out %{http_code} --silent --output /dev/null -c cookie.txt http://localhost:8080/minerva/api/doLogin)
-
test 200 = $(curl --write-out %{http_code} --silent --output /dev/null --cookie cookie.txt http://localhost:8080/minerva/api/projects/)
build_rpm
:
image
:
centos:7
stage
:
packaging
dependencies
:
-
build_war
only
:
-
tags
tags
:
-
privileged
artifacts
:
# you cannot enforce never here yet
expire_in
:
1000 yrs
paths
:
-
"
rpm/rpmbuildtemp/RPMS/noarch/minerva-*.rpm"
script
:
-
yum -y install rpmdevtools unzip
-
rpm/buildrpm.sh minerva.war
rpmlint
:
image
:
centos:7
stage
:
test
dependencies
:
-
build_rpm
tags
:
-
privileged
only
:
-
tags
script
:
-
yum -y install rpmlint
-
rpmlint -f rpm/rpmlint.config rpm/rpmbuildtemp/RPMS/noarch/minerva-*.rpm
test_deploy_with_db_without_superadmin_rights
:
image
:
tomcat:8-jre
8
image
:
maven:3.8.6-jdk-
8
stage
:
test
services
:
-
postgres:9.6
dependencies
:
-
build_
w
ar
-
build_
j
ar
`
tags
:
-
privileged
only
:
...
...
@@ -618,6 +589,7 @@ test_deploy_with_db_without_superadmin_rights:
-
echo "database.password=test" >> /etc/minerva/db.properties
-
echo "CREATE DATABASE test;CREATE USER test WITH ENCRYPTED PASSWORD 'test';GRANT ALL PRIVILEGES ON DATABASE test TO test;" >tmp.sql
-
PGPASSWORD=$POSTGRES_PASSWORD psql -h postgres -U $POSTGRES_USER $POSTGRES_DB < tmp.sql
-
FIX ME!!!!!!!!!
-
mv minerva.war /usr/local/tomcat/webapps/minerva.war
-
/usr/local/tomcat/bin/startup.sh
-
sleep
15
...
...
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