Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Sven Schneider
Thesis_AR Visualization
Commits
ce1cc424
Commit
ce1cc424
authored
Mar 03, 2021
by
Athanasios
Browse files
Create .gitlab-ci.yml
parent
bbf73840
Changes
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
0 → 100644
View file @
ce1cc424
variables
:
EXPORT_DIR
:
"
/var/www/html/pages"
stages
:
-
test
-
deploy
-
cleanup
test-job
:
stage
:
test
script
:
-
echo "Testing files exist..."
-
test -f public/index.html
-
test -f public/main.js
-
test -f public/settings.js
-
test -f public/assets/css/style.css
-
test -f public/assets/css/moblie.css
-
test -f public/assets/images/header.jpg
-
test -f public/home/index.html
-
echo "Test finished, all ok"
only
:
-
master
deploy-job
:
stage
:
deploy
script
:
-
rm -r "$EXPORT_DIR/$CI_PROJECT_NAME"
-
mkdir -p "$EXPORT_DIR/$CI_PROJECT_NAME"
-
cp -r public/* "$EXPORT_DIR/$CI_PROJECT_NAME"
tags
:
-
production
only
:
-
master
when
:
manual
cleanup-job
:
stage
:
cleanup
script
:
-
rm -r "$EXPORT_DIR/$CI_PROJECT_NAME"
tags
:
-
production
when
:
manual
\ No newline at end of file
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment