Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
gitlab-ci-by-example
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Harbor Registry
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
Daniel Bissani Furlin
gitlab-ci-by-example
Commits
43171c8e
Commit
43171c8e
authored
9 years ago
by
Diego Giovane Pasqualin
Browse files
Options
Downloads
Patches
Plain Diff
oops, faltou o .gitlab-cy.yml
parent
cfddaae8
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+23
-0
23 additions, 0 deletions
.gitlab-ci.yml
with
23 additions
and
0 deletions
.gitlab-ci.yml
0 → 100644
+
23
−
0
View file @
43171c8e
# Exemplo usando make e artifacts.
before_script
:
# Vamos precisar do build-essential para compilar
-
apt-get update && apt-get install -y build-essential
job1
:
script
:
# Executa comando make
-
make
# Os artefatos são anexados a build e acessíveis na interface do Gitlab.
# Você pode querer anexar binários gerados, arquivos .deb ou qualquer
# coisa que seja fruto da build.
artifacts
:
# paths define os diretórios/arquivos que serão arquivados, pode
# colocar uma lista deles.
paths
:
-
build/
# Também é possível arquivar todos os arquivos não monitorados pelo
# git.
# - untracked: true
tags
:
-
debian
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