From df424b2d43b919c668314f3a81529efdb75e7600 Mon Sep 17 00:00:00 2001 From: Hasin Hayder Date: Sun, 7 Jan 2024 16:01:09 +0600 Subject: [PATCH] Circle CI Removed --- .circleci/config.yml | 61 -------------------------------------------- 1 file changed, 61 deletions(-) delete mode 100644 .circleci/config.yml diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index e21d45a..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,61 +0,0 @@ -# PHP CircleCI 2.0 configuration file -# See: https://circleci.com/docs/2.0/language-php/ -version: 2 - -# Define a job to be invoked later in a workflow. -# See: https://circleci.com/docs/2.0/configuration-reference/#jobs -jobs: - build: - # Specify the execution environment. You can specify an image from Dockerhub or use one of our Convenience Images from CircleCI's Developer Hub. - # See: https://circleci.com/docs/2.0/configuration-reference/#docker-machine-macos-windows-executor - docker: - # Specify the version you desire here - - image: cimg/php:8.1.5 - - resource_class: small - - # Specify service dependencies here if necessary - # CircleCI maintains a library of pre-built images - # documented at https://circleci.com/docs/2.0/circleci-images/ - # Using the RAM variation mitigates I/O contention - # for database intensive operations. - # - image: circleci/mysql:5.7-ram - # - # - image: redis:2.8.19 - - # Add steps to the job - # See: https://circleci.com/docs/2.0/configuration-reference/#steps - steps: - - checkout - - - run: sudo apt update # PHP CircleCI 2.0 Configuration File# PHP CircleCI 2.0 Configuration File sudo apt install zlib1g-dev libsqlite3-dev - # - run: sudo docker-php-ext-install zip - - # Download and cache dependencies - - restore_cache: - keys: - # "composer.lock" can be used if it is committed to the repo - - v1-dependencies-{{ checksum "composer.json" }} - # fallback to using the latest cache if no exact match is found - - v1-dependencies- - - - run: composer update --ignore-platform-reqs - - - save_cache: - key: v1-dependencies-{{ checksum "composer.json" }} - paths: - - ./vendor - - - run: - name: "Create Environment file and generate app key" - command: mv .env.example .env && php artisan key:generate - - - run: - name: "Create database and run migration" - command: touch database/hydra.sqlite && php artisan migrate && php artisan db:seed - - - run: - name: "Run Tests" - command: ./vendor/bin/phpunit - -