-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
67 lines (58 loc) · 2.11 KB
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
################################################################################
#
# This file is part of SplashSync Project.
#
# Copyright (C) Splash Sync <www.splashsync.com>
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
#
# For the full copyright and license information, please view the LICENSE
# file that was distributed with this source code.
#
# @author Bernard Paquier <[email protected]>
#
################################################################################
################################################################
# Include Pipeline Templates
include:
- remote: 'https://raw.githubusercontent.com/BadPixxel/Php-Sdk/main/gitlab/php/connectors.yaml'
#################################################################
# Quality Tests
#################################################################
quality:php-8.2:
when: manual
#################################################################
# Functional Tests
#################################################################
functional:php-8.1:
when: manual
functional:php-8.2:
when: manual
################################################################################
# Functional Tests - ThirdParty & Address
functional:customers:
extends: functional:php-8.1
when: always
variables:
SPLASH_TYPES: "ThirdParty,Address"
################################################################################
# Functional Tests - Products
functional:products:
extends: functional:php-8.1
when: always
needs:
- functional:customers
variables:
SPLASH_TYPES: "Product"
################################################################################
# Functional Tests - Orders & Invoices
functional:orders:
extends: functional:php-8.1
when: always
needs:
- functional:customers
- functional:products
variables:
SPLASH_TYPES: "Order,Invoice"