Merge pull request #10328 from nupplaphil/feat/drone-caching

Enable Drone Caching
This commit is contained in:
Hypolite Petovan 2021-05-27 16:45:49 -04:00 committed by GitHub
commit 57893fe24a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 128 additions and 8 deletions

View File

@ -52,26 +52,81 @@ trigger:
- pull_request - pull_request
steps: steps:
- name: Restore cache
image: meltwater/drone-cache:dev
settings:
backend: "filesystem"
restore: true
cache_key: '{{ .Repo.Name }}_phpcs_{{ arch }}_{{ os }}'
archive_format: "gzip"
mount:
- '.composer'
volumes:
- name: cache
path: /tmp/cache
- name: Install dependencies - name: Install dependencies
image: composer image: composer
commands: commands:
- export COMPOSER_HOME=.composer
- ./bin/composer.phar run cs:install - ./bin/composer.phar run cs:install
- name: Rebuild cache
image: meltwater/drone-cache:dev
settings:
backend: "filesystem"
rebuild: true
cache_key: '{{ .Repo.Name }}_phpcs_{{ arch }}_{{ os }}'
archive_format: "gzip"
mount:
- '.composer'
volumes:
- name: cache
path: /tmp/cache
- name: Run coding standards check - name: Run coding standards check
image: friendicaci/php-cs image: friendicaci/php-cs
commands: commands:
- export CHANGED_FILES="$(git diff --name-status ${DRONE_COMMIT_BEFORE}..${DRONE_COMMIT_AFTER} | grep ^A | cut -f2)" - export CHANGED_FILES="$(git diff --name-status ${DRONE_COMMIT_BEFORE}..${DRONE_COMMIT_AFTER} | grep ^A | cut -f2)"
- /check-php-cs.sh - /check-php-cs.sh
volumes:
- name: cache
host:
path: /tmp/drone-cache
--- ---
kind: pipeline kind: pipeline
type: docker type: docker
name: php7.3-mariadb name: php7.3-mariadb
steps: steps:
- name: Restore cache
image: meltwater/drone-cache:dev
settings:
backend: "filesystem"
restore: true
cache_key: '{{ .Repo.Name }}_php73_{{ arch }}_{{ os }}'
archive_format: "gzip"
mount:
- '.composer'
volumes:
- name: cache
path: /tmp/cache
- name: Composer install - name: Composer install
image: friendicaci/php7.4:php7.4.18 image: friendicaci/php7.3:php7.3.28
commands: commands:
- composer validate - export COMPOSER_HOME=.composer
- composer install --prefer-dist - ./bin/composer.phar validate
- ./bin/composer.phar install --prefer-dist
- name: Rebuild cache
image: meltwater/drone-cache:dev
settings:
backend: "filesystem"
rebuild: true
cache_key: '{{ .Repo.Name }}_php73_{{ arch }}_{{ os }}'
archive_format: "gzip"
mount:
- '.composer'
volumes:
- name: cache
path: /tmp/cache
- name: Test Friendica - name: Test Friendica
image: friendicaci/php7.3:php7.3.28 image: friendicaci/php7.3:php7.3.28
environment: environment:
@ -105,17 +160,47 @@ services:
- name: redis - name: redis
image: redis image: redis
volumes:
- name: cache
host:
path: /tmp/drone-cache
--- ---
kind: pipeline kind: pipeline
type: docker type: docker
name: php7.4-mariadb name: php7.4-mariadb
steps: steps:
- name: Restore cache
image: meltwater/drone-cache:dev
settings:
backend: "filesystem"
restore: true
cache_key: '{{ .Repo.Name }}_php74_{{ arch }}_{{ os }}'
archive_format: "gzip"
mount:
- '.composer'
volumes:
- name: cache
path: /tmp/cache
- name: Composer install - name: Composer install
image: friendicaci/php7.4:php7.4.18 image: friendicaci/php7.4:php7.4.18
commands: commands:
- composer validate - export COMPOSER_HOME=.composer
- composer install --prefer-dist - ./bin/composer.phar validate
- ./bin/composer.phar install --prefer-dist
- name: Rebuild cache
image: meltwater/drone-cache:dev
settings:
backend: "filesystem"
rebuild: true
cache_key: '{{ .Repo.Name }}_php74_{{ arch }}_{{ os }}'
archive_format: "gzip"
mount:
- '.composer'
volumes:
- name: cache
path: /tmp/cache
- name: Test Friendica - name: Test Friendica
image: friendicaci/php7.4:php7.4.18 image: friendicaci/php7.4:php7.4.18
environment: environment:
@ -161,17 +246,47 @@ services:
- name: redis - name: redis
image: redis image: redis
volumes:
- name: cache
host:
path: /tmp/drone-cache
--- ---
kind: pipeline kind: pipeline
type: docker type: docker
name: php8.0-mariadb name: php8.0-mariadb
steps: steps:
- name: Restore cache
image: meltwater/drone-cache:dev
settings:
backend: "filesystem"
restore: true
cache_key: '{{ .Repo.Name }}_php80_{{ arch }}_{{ os }}'
archive_format: "gzip"
mount:
- '.composer'
volumes:
- name: cache
path: /tmp/cache
- name: Composer install - name: Composer install
image: friendicaci/php7.4:php7.4.18 image: friendicaci/php8.0:php8.0.5
commands: commands:
- composer validate - export COMPOSER_HOME=.composer
- composer install --prefer-dist - ./bin/composer.phar validate
- ./bin/composer.phar install --prefer-dist
- name: Rebuild cache
image: meltwater/drone-cache:dev
settings:
backend: "filesystem"
rebuild: true
cache_key: '{{ .Repo.Name }}_php80_{{ arch }}_{{ os }}'
archive_format: "gzip"
mount:
- '.composer'
volumes:
- name: cache
path: /tmp/cache
- name: Test Friendica - name: Test Friendica
image: friendicaci/php8.0:php8.0.5 image: friendicaci/php8.0:php8.0.5
environment: environment:
@ -205,3 +320,8 @@ services:
- name: redis - name: redis
image: redis image: redis
volumes:
- name: cache
host:
path: /tmp/drone-cache