HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/marisrental/boldt.tech/vendor/laravelium/sitemap/.gitlab-ci.yml
image: php:7.1

before_script:

    # update os
    - apt-get update -yqq

    # install missing packages
    - apt-get install wget git zip unzip -yqq

    # install composer.phar
    - curl -sS https://getcomposer.org/installer | php

    # install xdebug
    - pecl install xdebug

    # enable xdebug
    - docker-php-ext-enable xdebug

    # run composer install
    - php composer.phar install

image: php:7.2

before_script:

    # update os
    - apt-get update -yqq

    # install missing packages
    - apt-get install wget git zip unzip -yqq

    # install composer.phar
    - curl -sS https://getcomposer.org/installer | php

    # install xdebug
    - pecl install xdebug

    # enable xdebug
    - docker-php-ext-enable xdebug

    # run composer install
    - php composer.phar install

image: php:7.3

before_script:

    # update os
    - apt-get update -yqq

    # install missing packages
    - apt-get install wget git zip unzip -yqq

    # install composer.phar
    - curl -sS https://getcomposer.org/installer | php

    # install xdebug
    - pecl install xdebug-beta

    # enable xdebug
    - docker-php-ext-enable xdebug

    # run composer install
    - php composer.phar install

# test php 7.1
test:php7.1:

  image: php:7.1

  script:
  - vendor/bin/phpunit --configuration phpunit.xml --coverage-text --colors=never

  allow_failure: false

# test php 7.2
test:php7.2:

  image: php:7.2

  script:
  - vendor/bin/phpunit --configuration phpunit.xml --coverage-text --colors=never

  allow_failure: false

# test php 7.3
test:php7.3:

  image: php:7.3

  script:
  - vendor/bin/phpunit --configuration phpunit.xml --coverage-text --colors=never

  allow_failure: false