Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
G
gitlab-ci
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
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
wpdesk
Predators
Shopify
Tools
gitlab-ci
Compare revisions
f66f838306fb1c6b78a54b679416461c9f1e1675 to 37f17572774fa1d0e196b00a09b1e7d6dd7a1457
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
wpdesk/predators/shopify/tools/gitlab-ci
Select target project
No results found
37f17572774fa1d0e196b00a09b1e7d6dd7a1457
Select Git revision
Branches
main
1 result
Swap
Target
wpdesk/predators/shopify/tools/gitlab-ci
Select target project
wpdesk/predators/shopify/tools/gitlab-ci
1 result
f66f838306fb1c6b78a54b679416461c9f1e1675
Select Git revision
Branches
main
1 result
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (2)
feature(core): refactor GitLab CI build rules structure
· 210b5032
Sebastian Pisula
authored
1 month ago
210b5032
Merge branch 'feature/new-ci' into 'main'
· 37f17572
Sebastian Pisula
authored
1 month ago
feature(core): refactor GitLab CI build rules structure See merge request
!25
37f17572
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
gitlab-ci.yml
+3
-3
3 additions, 3 deletions
gitlab-ci.yml
with
3 additions
and
3 deletions
gitlab-ci.yml
View file @
37f17572
...
...
@@ -11,7 +11,7 @@ stages:
-
build
-
deploy
.
template
:
&
build-rules
.build-rules
:
rules
:
-
if
:
'
$CI_PIPELINE_SOURCE
==
"merge_request_event"
||
$CI_COMMIT_REF_NAME
==
"devel"'
when
:
always
...
...
@@ -65,7 +65,7 @@ stages:
DEPLOY_HOST
:
$PRODUCTION_DEPLOY_HOST
build web frontend
:
<<
:
*
build-rules
extends
:
.
build-rules
image
:
node:latest
artifacts
:
paths
:
...
...
@@ -84,7 +84,7 @@ build web frontend:
-
npm run build
build web backend
:
<<
:
*
build-rules
extends
:
.
build-rules
image
:
composer:latest
artifacts
:
paths
:
...
...
This diff is collapsed.
Click to expand it.