Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
2
2024-files
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
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
MUDE
2024-files
Commits
0f690730
Commit
0f690730
authored
5 months ago
by
Kwangjin Lee
Browse files
Options
Downloads
Patches
Plain Diff
Update file .gitlab-ci.yml
parent
11f7a45e
No related branches found
No related tags found
No related merge requests found
Pipeline
#250678
passed
5 months ago
Stage: setup
Stage: process
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+20
-16
20 additions, 16 deletions
.gitlab-ci.yml
with
20 additions
and
16 deletions
.gitlab-ci.yml
+
20
−
16
View file @
0f690730
...
...
@@ -14,17 +14,23 @@ stages:
-
process
-
deploy
.install_dependencies
:
before_script
:
-
apt-get update && apt-get install -y curl
-
pip install jupytext nbconvert
setup
:
stage
:
setup
extends
:
.install_dependencies
script
:
-
apt-get update && apt-get install -y curl
-
pip install jupytext nbconvert
-
echo "Dependencies installed successfully"
artifacts
:
paths
:
-
.pip-cache/
process_notebooks
:
stage
:
process
extends
:
.install_dependencies
script
:
-
|
for notebook in $(find ./src -name "*.ipynb"); do
...
...
@@ -76,8 +82,8 @@ create_sync_script:
paths
:
-
sync_notebooks.py
deploy
-draft-students
:
stage
:
deploy
.
deploy
_template
:
extends
:
.install_dependencies
script
:
-
python sync_notebooks.py
-
|
...
...
@@ -85,6 +91,12 @@ deploy-draft-students:
echo "Conflicts detected. Please review the .conflicts files."
exit 1
fi
deploy-draft-students
:
stage
:
deploy
extends
:
.deploy_template
script
:
-
!reference
[
.deploy_template
,
script
]
-
|
curl -X POST "${WEBHOOK_URL}/files-sync-students-draft" \
-H "Content-Type: application/json" \
...
...
@@ -104,13 +116,9 @@ deploy-draft-students:
deploy-teachers
:
stage
:
deploy
extends
:
.deploy_template
script
:
-
python sync_notebooks.py
-
|
if [ -n "$(find . -name '*.conflicts')" ]; then
echo "Conflicts detected. Please review the .conflicts files."
exit 1
fi
-
!reference
[
.deploy_template
,
script
]
-
|
curl -X POST "${WEBHOOK_URL}/files-sync-teachers" \
-H "Content-Type: application/json" \
...
...
@@ -130,13 +138,9 @@ deploy-teachers:
deploy-production-students
:
stage
:
deploy
extends
:
.deploy_template
script
:
-
python sync_notebooks.py
-
|
if [ -n "$(find . -name '*.conflicts')" ]; then
echo "Conflicts detected. Please review the .conflicts files."
exit 1
fi
-
!reference
[
.deploy_template
,
script
]
-
|
curl -X POST "${WEBHOOK_URL}/files-sync-students" \
-H "Content-Type: application/json" \
...
...
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