File tree 3 files changed +52
-24
lines changed
3 files changed +52
-24
lines changed Original file line number Diff line number Diff line change 1
1
stages :
2
2
- install
3
3
- test
4
- - build
5
- - deploy
6
4
7
5
install_dependencies :
8
6
stage : install
9
- image : composer:latest
7
+ image : richarvey/nginx-php-fpm:php5.6 # Use a PHP 5.6-compatible image
8
+ before_script :
9
+ - apt-get update && apt-get install -y unzip
10
+ - curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
10
11
script :
11
12
- composer install
12
13
artifacts :
@@ -15,26 +16,6 @@ install_dependencies:
15
16
16
17
test :
17
18
stage : test
18
- image : php:7.4
19
- before_script :
20
- - apt-get update && apt-get install -y zip unzip
21
- - curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
22
- - composer install
19
+ image : richarvey/nginx-php-fpm:php5.6 # Use the same image for consistency
23
20
script :
24
21
- ./vendor/bin/phpunit --testdox
25
-
26
- build :
27
- stage : build
28
- image : php:7.4
29
- script :
30
- - echo "Building project..."
31
-
32
- # deploy:
33
- # stage: deploy
34
- # image: alpine:latest
35
- # only:
36
- # - main
37
- # before_script:
38
- # - apk add --no-cache openssh
39
- # script:
40
- # - scp -r ./* user@your_server:/path/to/deployment/
Original file line number Diff line number Diff line change
1
+ stages:
2
+ - install
3
+ - test
4
+ - build
5
+ - deploy
6
+
7
+ install_dependencies:
8
+ stage: install
9
+ image: composer:latest
10
+ script:
11
+ - composer install
12
+ artifacts:
13
+ paths:
14
+ - vendor/
15
+
16
+ test:
17
+ stage: test
18
+ image: php:7.4
19
+ before_script:
20
+ - apt-get update && apt-get install -y zip unzip
21
+ - curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
22
+ - composer install
23
+ script:
24
+ - ./vendor/bin/phpunit --testdox
25
+
26
+ build:
27
+ stage: build
28
+ image: php:7.4
29
+ script:
30
+ - echo "Building project..."
31
+
32
+ #deploy:
33
+ # stage: deploy
34
+ # image: alpine:latest
35
+ # only:
36
+ # - main
37
+ # before_script:
38
+ # - apk add --no-cache openssh
39
+ # script:
40
+ # - scp -r ./* user@your_server:/path/to/deployment/
Original file line number Diff line number Diff line change
1
+ FROM php:5.6-cli
2
+
3
+ # Install required dependencies
4
+ RUN apt-get update && apt-get install -y unzip git curl
5
+
6
+ # Install Composer
7
+ RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
You can’t perform that action at this time.
0 commit comments