【发布时间】:2019-09-24 22:21:14
【问题描述】:
为了学习 CI,我在 Homestead 中启动了一个新的 Laravel 项目。
我的 circleci config.yml 如下所示
# PHP CircleCI 2.0 configuration file
#
# Check https://circleci.com/docs/2.0/language-php/ for more details
#
version: 2
jobs:
build:
docker:
# Specify the version you desire here
- image: circleci/php:7.3-stretch-node-browsers
# 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:3
steps:
- checkout
- run: sudo apt update && sudo apt install zlib1g-dev libsqlite3-dev
- run: sudo docker-php-ext-install zip
# Download and cache dependencies
# composer cache
- 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 install -n --prefer-dist
- save_cache:
key: composer-v1-{{ checksum "composer.lock" }}
paths:
- vendor
# node cache
- restore_cache:
keys:
- node-v4-{{ checksum "package.json" }}
- node-v4-
- run: npm install
- save_cache:
key: node-v4-{{ checksum "package.json" }}
paths:
- node_modules
- ~/.yarn
# prepare the database
- run: touch storage/testing.sqlite
- run: php artisan migrate --env=testing --database=sqlite_testing --force
# run tests with phpunit or codecept
#- run: ./vendor/bin/phpunit
# this example uses codecept but you're not limited to it
- run: ./vendor/bin/codecept build
- run: ./vendor/bin/codecept run --xml result.xml
- store_test_results:
path: tests/_output
- store_artifacts:
path: tests/_output
当 CircleCI 到达
- run: composer install -n --prefer-dist
尝试更新丢失的软件包仍然不起作用。
添加所需的存储库 ppa:ondrej/php 会产生更多错误。
本地的 Laravel 位于 Homestead 内,带有 PHP 版本的 PHP 7.3.2-3
我的问题是,我该如何解决这个问题,以及如何将我自己的 config.yml 文件放在一起,以用于我的特定项目?
【问题讨论】:
标签: laravel continuous-integration yaml continuous-deployment circleci