Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
eossr
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
Container 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
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
ESCAPE2020
WP3
eossr
Merge requests
!243
remove build dir in snippet and in our CI
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
remove build dir in snippet and in our CI
rmbuild
into
master
Overview
0
Commits
2
Pipelines
2
Changes
2
Merged
Vuillaume
requested to merge
rmbuild
into
master
2 years ago
Overview
0
Commits
2
Pipelines
2
Changes
2
Expand
Fixes
#106 (closed)
0
0
Merge request reports
Viewing commit
ea7d748b
Prev
Next
Show latest version
2 files
+
5
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
ea7d748b
remove build dir in snippet and in our CI
· ea7d748b
vuillaut
authored
2 years ago
examples/CI_code_snippets/3.ex_CI_upload_ossr.md
+
8
−
1
Options
@@ -43,7 +43,6 @@ deploy_zenodo:
```
### Upload to Sandbox Zenodo
```
yaml
stages
:
@@ -59,3 +58,11 @@ deploy_zenodo:
only
:
-
tags
```
Note: you might want to restore the directory to its tag stage if you made changes in previous CI stages
(for example removing build subdirs from previous test stages).
You may do so using adding the following in the
`before_script`
section:
```
- apt-get install git -y
- git reset --hard HEAD && git clean -fd
```
Loading