Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
HowToGitLabRunner
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
Model registry
Operate
Environments
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
Show more breadcrumbs
ISAS-FSD
HowToGitLabRunner
Commits
9655d1ed
Commit
9655d1ed
authored
5 years ago
by
Nicolas Borboën
Browse files
Options
Downloads
Patches
Plain Diff
[FIX] Unicode missing char in LaTeX
parent
2f87f566
No related branches found
No related tags found
No related merge requests found
Pipeline
#16722
passed
5 years ago
Stage: test
Stage: build
Stage: deploy
Stage: control
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
README.md
+8
-8
8 additions, 8 deletions
README.md
with
8 additions
and
8 deletions
README.md
+
8
−
8
View file @
9655d1ed
...
...
@@ -23,7 +23,7 @@ modifying the current one. We ended to do it the following way:
That way, the things are kept as close as possible to a standard dev/stage/prod
environment but still in the same repo, keeping it simple to understand.
>
💡
Before diving into it, you may want to check the
>
:bulb:
Before diving into it, you may want to check the
[
documentation
](
https://docs.gitlab.com/ce/ci/README.html
)
and some
[
real world
examples
](
https://docs.gitlab.com/ce/ci/examples/README.html
)
.
...
...
@@ -35,7 +35,7 @@ described here: https://docs.gitlab.com/runner/install/
It creates the gitlab-runner user on your system.
>
💡
On some Linux, you may want to
>
:bulb:
On some Linux, you may want to
remove the
`~/.bash_logout`
file to avoid the issue
[
4092
](
https://gitlab.com/gitlab-org/gitlab-runner/issues/4092
)
— thanks me
later.
...
...
@@ -70,7 +70,7 @@ be used by default. In the `.gitlab-ci.yaml` files, all the jobs are set to be
run with the tags "test" — please double check that this tag is defined in the
runner configuration, or allow your runner to be ran without any tags.
>
💡
Read more about tags here: https://docs.gitlab.com/ee/ci/runners/#using-tags
>
:bulb:
Read more about tags here: https://docs.gitlab.com/ee/ci/runners/#using-tags
## Check and edit the `.gitlab-ci.yaml`
...
...
@@ -81,14 +81,14 @@ In short, this file defines the pipeline process, which contain stages. A stage
can contains jobs, which describes what to do. Jobs can be parallel and manual,
as of the "deploy_to_production" job.
>
💡
Note that if you want to keep "produced" files between jobs, you have to use the
>
:bulb:
Note that if you want to keep "produced" files between jobs, you have to use the
[
artifacts
](
https://docs.gitlab.com/ce/user/project/pipelines/job_artifacts.html
)
system.
The file of this project define 4 stages:
-
test
→
just prints out some env variables.
-
build
→
creates the README.pdf.
-
deploy
→
creates the release via the
`deploy.sh`
script. Need a variable.
-
control
→
final steps, does nothing but echoing a string.
-
test
:
just prints out some env variables.
-
build
:
creates the README.pdf.
-
deploy
:
creates the release via the
`deploy.sh`
script. Need a variable.
-
control
:
final steps, does nothing but echoing a string.

...
...
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