Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
lectures
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
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
Solid state physics
lectures
Merge requests
!4
Learning goals
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Learning goals
learning_goals
into
master
Overview
25
Commits
21
Pipelines
19
Changes
1
All threads resolved!
Hide all comments
Merged
Anton Akhmerov
requested to merge
learning_goals
into
master
6 years ago
Overview
25
Commits
21
Pipelines
19
Changes
1
All threads resolved!
Hide all comments
Expand
0
0
Merge request reports
Compare
version 1
version 19
a76cf05a
6 years ago
version 18
984eb60e
6 years ago
version 17
3ecd0232
6 years ago
version 16
eb9c2ad0
6 years ago
version 15
4be3d324
6 years ago
version 14
a7e01f18
6 years ago
version 13
b8dc0f63
6 years ago
version 12
fe36002b
6 years ago
version 11
40b9603a
6 years ago
version 10
a3b8fb60
6 years ago
version 9
ebcbfadb
6 years ago
version 8
f66d0b52
6 years ago
version 7
f1370996
6 years ago
version 6
06d224dd
6 years ago
version 5
33e57a0c
6 years ago
version 4
c6cfa854
6 years ago
version 3
3fe93b89
6 years ago
version 2
71fd3ed0
6 years ago
version 1
869bc7ee
6 years ago
master (base)
and
version 2
latest version
3c75abba
21 commits,
6 years ago
version 19
a76cf05a
20 commits,
6 years ago
version 18
984eb60e
19 commits,
6 years ago
version 17
3ecd0232
18 commits,
6 years ago
version 16
eb9c2ad0
17 commits,
6 years ago
version 15
4be3d324
16 commits,
6 years ago
version 14
a7e01f18
15 commits,
6 years ago
version 13
b8dc0f63
14 commits,
6 years ago
version 12
fe36002b
13 commits,
6 years ago
version 11
40b9603a
12 commits,
6 years ago
version 10
a3b8fb60
11 commits,
6 years ago
version 9
ebcbfadb
10 commits,
6 years ago
version 8
f66d0b52
9 commits,
6 years ago
version 7
f1370996
8 commits,
6 years ago
version 6
06d224dd
7 commits,
6 years ago
version 5
33e57a0c
6 commits,
6 years ago
version 4
c6cfa854
5 commits,
6 years ago
version 3
3fe93b89
4 commits,
6 years ago
version 2
71fd3ed0
3 commits,
6 years ago
version 1
869bc7ee
3 commits,
6 years ago
Show latest version
1 file
+
63
−
7
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
.gitlab-ci.yml
+
63
−
7
Options
image
:
quantumtinkerer/research
build and upload the contents
:
stages
:
-
build
-
deploy
build lectures
:
stage
:
build
before_script
:
-
pip install -U mkdocs mkdocs-material python-markdown-math notedown
script
:
-
python execute.py
-
mkdocs build
artifacts
:
paths
:
-
site
expire_in
:
1 week
.prepare_deploy
:
&prepare_deploy
stage
:
deploy
only
:
-
branches@solidstate/lectures
before_script
:
## Install ssh-agent if not already installed, it is required by Docker.
## (change apt-get to yum if you use an RPM-based image)
@@ -20,12 +39,49 @@ build and upload the contents:
-
chmod 700 ~/.ssh
-
ssh-keyscan tnw-tn1.tudelft.net >> ~/.ssh/known_hosts
-
chmod 644 ~/.ssh/known_hosts
-
pip install -U mkdocs mkdocs-material python-markdown-math notedown
script
:
# Compile lectures
-
python execute.py
-
mkdocs build
-
"
rsync
-rv
site/*
solidstate@tnw-tn1.tudelft.net:"
-
"
rsync
-rv
site/*
solidstate@tnw-tn1.tudelft.net:$DEPLOY_PATH"
deploy delft version
:
<<
:
*prepare_deploy
only
:
-
local@solidstate/lectures
variables
:
DEPLOY_PATH
:
"
"
environment
:
name
:
$CI_COMMIT_REF_NAME
url
:
"
https://solidstate.quantumtinkerer.tudelft.nl/"
deploy test version
:
<<
:
*prepare_deploy
except
:
-
local@solidstate/lectures
variables
:
DEPLOY_PATH
:
"
test_builds/$CI_COMMIT_REF_NAME"
environment
:
name
:
$CI_COMMIT_REF_NAME
url
:
"
https://solidstate.quantumtinkerer.tudelft.nl/test_builds/$CI_COMMIT_REF_NAME"
on_stop
:
undeploy test version
undeploy test version
:
<<
:
*prepare_deploy
except
:
-
local@solidstate/lectures
when
:
manual
variables
:
DEPLOY_PATH
:
"
test_builds/$CI_COMMIT_REF_NAME"
script
:
-
mkdir empty/
-
"
rsync
-rlv
--delete
empty/
solidstate@tnw-tn1.tudelft.net:$DEPLOY_PATH"
environment
:
name
:
$CI_COMMIT_REF_NAME
action
:
stop
merge into local
:
stage
:
deploy
only
:
-
master@solidstate/lectures
script
:
-
git checkout local
-
git diff-index --quiet master || git -c "user.name=$GITLAB_USER_NAME" -c "user.email=$GITLAB_USER_EMAIL" merge master
-
"
git
push
https://$GITLAB_PUSH_KEY@gitlab.kwant-project.org/solidstate/lectures.git
local"
Loading