Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
Website
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Operate
Environments
Terraform modules
Monitor
Service Desk
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
subugoe
ahiqar
Website
Commits
cbaa0f84
Commit
cbaa0f84
authored
3 years ago
by
Mathias Goebel
Browse files
Options
Downloads
Patches
Plain Diff
ci: add build and deploy for test
parent
b6f61b01
No related branches found
No related tags found
1 merge request
!94
ci: add build and deploy for test
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+30
-4
30 additions, 4 deletions
.gitlab-ci.yml
with
30 additions
and
4 deletions
.gitlab-ci.yml
+
30
−
4
View file @
cbaa0f84
...
...
@@ -52,6 +52,8 @@ variables:
GIT_DEPTH
:
2
MAIN
:
'
https://ahikar.sub.uni-goettingen.de'
DEVELOP
:
'
https://ahikar-dev.sub.uni-goettingen.de'
TEST
:
'
https://ahikar-test.sub.uni-goettingen.de'
API_TEST
:
'
https://ahikar-test.sub.uni-goettingen.de/api'
API_DEV
:
'
https://ahikar-dev.sub.uni-goettingen.de/api'
API_MAIN
:
'
https://ahikar.sub.uni-goettingen.de/api'
BASE_BACKEND
:
'
/website/'
...
...
@@ -84,6 +86,14 @@ build_page-all:
VUE_APP_PUBLIC_PATH
:
'
/ahiqar/website/${CI_COMMIT_REF_SLUG}/'
<<
:
*build-defaults
build_page-test
:
variables
:
VUE_APP_BASE_URL_API
:
"
${API_TEST}"
VUE_APP_BASE_URL_VIEWER
:
"
${TEST}"
VUE_APP_PUBLIC_PATH
:
"
${BASE_BACKEND}"
<<
:
*build-defaults
build_page-develop-backend
:
only
:
-
develop
...
...
@@ -102,6 +112,24 @@ build_page-main-backend:
VUE_APP_PUBLIC_PATH
:
"
${BASE_BACKEND}"
<<
:
*build-defaults
deploy-test
:
stage
:
deploy_to_server
image
:
rsamban/scp-resource:latest
except
:
-
develop
-
main
needs
:
-
job
:
build_page-test
artifacts
:
true
dependencies
:
-
build_page-test
script
:
-
*ssh
# remove the old version from test
-
ssh -o 'StrictHostKeyChecking no' $SSH_USER@$SSH_IP "rm -rf ~/test/frontend/website/*"
# install new version to test
-
scp -o 'StrictHostKeyChecking no' -r public/$CI_COMMIT_REF_SLUG/* $SSH_USER@$SSH_IP:~/test/frontend/website/
deploy-dev
:
stage
:
deploy_to_server
image
:
rsamban/scp-resource:latest
...
...
@@ -111,12 +139,10 @@ deploy-dev:
-
build_page-develop-backend
script
:
-
*ssh
# remove the old version from dev
and test
# remove the old version from dev
-
ssh -o 'StrictHostKeyChecking no' $SSH_USER@$SSH_IP "rm -rf ~/$CI_COMMIT_REF_NAME/frontend/website/*"
-
ssh -o 'StrictHostKeyChecking no' $SSH_USER@$SSH_IP "rm -rf ~/test/frontend/website/*"
# install new version to dev and test
# install new version to dev
-
scp -o 'StrictHostKeyChecking no' -r public/$CI_COMMIT_REF_NAME/* $SSH_USER@$SSH_IP:~/$CI_COMMIT_REF_NAME/frontend/website/
-
ssh -o 'StrictHostKeyChecking no' $SSH_USER@$SSH_IP "cp -r ~/$CI_COMMIT_REF_NAME/frontend/website/* ~/test/frontend/website/"
deploy-main
:
stage
:
deploy_to_server
...
...
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