Skip to content

Commit ab27ab8

Browse files
committed
update
1 parent 36955a8 commit ab27ab8

File tree

3 files changed

+52
-24
lines changed

3 files changed

+52
-24
lines changed

.gitlab-ci.yml

+5-24
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
stages:
22
- install
33
- test
4-
- build
5-
- deploy
64

75
install_dependencies:
86
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
1011
script:
1112
- composer install
1213
artifacts:
@@ -15,26 +16,6 @@ install_dependencies:
1516

1617
test:
1718
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
2320
script:
2421
- ./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/

.gitlab-ci.yml.00

+40
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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/

Dockerfile

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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

0 commit comments

Comments
 (0)