Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
portal-backend
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
HBP Medical Informatics Platform
portal-backend
Merge requests
!40
Dev/automated build and push actions
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Dev/automated build and push actions
dev/automated_build_and_push_actions
into
master
Overview
2
Commits
2
Pipelines
0
Changes
24
Merged
Kostas FILIPPOPOLITIS
requested to merge
dev/automated_build_and_push_actions
into
master
3 years ago
Overview
2
Commits
2
Pipelines
0
Changes
24
Expand
Created by: ThanKarab
Changelog:
New updated DOCKERFILE.
The DOCKERFILE uses new mvn and jdk images.
No dependencies on old HBPMedical repos/images.
Removed many unused old files.
Removed docker specific folder.
Github actions for build/push in dockerhub.
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
19cc92c4
2 commits,
2 years ago
24 files
+
131
−
835
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
24
Search (e.g. *.vue) (Ctrl+P)
.circleci/config.yml deleted
100644 → 0
+
0
−
38
Options
---
# Sample advanced CircleCI configuration: https://github.com/transcom/mymove/blob/master/.circleci/config.yml
version
:
2.1
jobs
:
build
:
working_directory
:
~/src
docker
:
-
image
:
hbpmip/docker-compose-for-ci:18.09-5
environment
:
-
CIRCLECI
:
true
steps
:
-
setup_remote_docker
:
version
:
18.06.0-ce
-
checkout
-
restore_cache
:
keys
:
-
pre-commit-dot-cache-{{ checksum ".pre-commit-config.yaml" }}
-
run
:
name
:
"
Install
requirements"
command
:
|
docker --version
pre-commit install
-
run
:
name
:
"
Validate
code
quality"
command
:
|
pre-commit run --all-files
-
save_cache
:
key
:
pre-commit-dot-cache-{{ checksum ".pre-commit-config.yaml" }}
paths
:
-
~/.cache/pre-commit
-
run
:
name
:
"
Build
project"
command
:
./build.sh
-
run
:
name
:
"
Test
project"
command
:
./tests/test.sh