cleanup
This commit is contained in:
parent
6d76c4404a
commit
693023aff0
@ -15,12 +15,14 @@ spec:
|
|||||||
- name: destination
|
- name: destination
|
||||||
type: string
|
type: string
|
||||||
description: The git repo branch to merge to.
|
description: The git repo branch to merge to.
|
||||||
- name: image
|
# - name: image
|
||||||
type: string
|
# type: string
|
||||||
description: Full name of image repo.
|
# description: Full name of image repo.
|
||||||
- name: dockerfile
|
# - name: dockerfile
|
||||||
type: string
|
# type: string
|
||||||
description: 'The path to the Dockerfile to execute (default: ./Dockerfile)'
|
# description: 'The path to the Dockerfile to execute (default: ./Dockerfile)'
|
||||||
|
|
||||||
|
|
||||||
workspaces:
|
workspaces:
|
||||||
- name: shared-data
|
- name: shared-data
|
||||||
description: |
|
description: |
|
||||||
@ -28,8 +30,10 @@ spec:
|
|||||||
next task.
|
next task.
|
||||||
- name: config
|
- name: config
|
||||||
- name: docker-credentials
|
- name: docker-credentials
|
||||||
|
|
||||||
|
|
||||||
tasks:
|
tasks:
|
||||||
# Clone du repo git
|
# 📥 Clone du repo git
|
||||||
- name: fetch-source
|
- name: fetch-source
|
||||||
taskRef:
|
taskRef:
|
||||||
name: git-clone
|
name: git-clone
|
||||||
@ -46,7 +50,7 @@ spec:
|
|||||||
- name: depth
|
- name: depth
|
||||||
value: '50'
|
value: '50'
|
||||||
|
|
||||||
# Lecture du readme du projet
|
# ⭐ Lecture du readme du projet
|
||||||
- name: show-readme
|
- name: show-readme
|
||||||
runAfter: ["fetch-source"]
|
runAfter: ["fetch-source"]
|
||||||
taskRef:
|
taskRef:
|
||||||
@ -54,7 +58,8 @@ spec:
|
|||||||
workspaces:
|
workspaces:
|
||||||
- name: source
|
- name: source
|
||||||
workspace: shared-data
|
workspace: shared-data
|
||||||
# Execution des tests php-security-check
|
|
||||||
|
# ⭐ Execution des tests php-security-check
|
||||||
- name: php-security-check
|
- name: php-security-check
|
||||||
runAfter: ["fetch-source"]
|
runAfter: ["fetch-source"]
|
||||||
taskRef:
|
taskRef:
|
||||||
@ -62,7 +67,8 @@ spec:
|
|||||||
workspaces:
|
workspaces:
|
||||||
- name: source
|
- name: source
|
||||||
workspace: shared-data
|
workspace: shared-data
|
||||||
# Execution des tests phpstan
|
|
||||||
|
# ⭐ Execution des tests phpstan
|
||||||
- name: phpstan
|
- name: phpstan
|
||||||
runAfter: ["fetch-source"]
|
runAfter: ["fetch-source"]
|
||||||
taskRef:
|
taskRef:
|
||||||
@ -70,7 +76,8 @@ spec:
|
|||||||
workspaces:
|
workspaces:
|
||||||
- name: source
|
- name: source
|
||||||
workspace: shared-data
|
workspace: shared-data
|
||||||
# Execution des tests php-cs-fixer
|
|
||||||
|
# ⭐ Execution des tests php-cs-fixer
|
||||||
- name: php-cs-fixer
|
- name: php-cs-fixer
|
||||||
runAfter: ["fetch-source"]
|
runAfter: ["fetch-source"]
|
||||||
taskRef:
|
taskRef:
|
||||||
@ -84,7 +91,7 @@ spec:
|
|||||||
- name: destination
|
- name: destination
|
||||||
value: $(params.destination)
|
value: $(params.destination)
|
||||||
|
|
||||||
# Execution des tests unitaires avec une BDD en sidecar
|
# ⭐ Execution des tests unitaires avec une BDD en sidecar
|
||||||
- name: php-unit-test
|
- name: php-unit-test
|
||||||
runAfter:
|
runAfter:
|
||||||
- fetch-source
|
- fetch-source
|
||||||
@ -97,6 +104,7 @@ spec:
|
|||||||
- name: source
|
- name: source
|
||||||
workspace: shared-data
|
workspace: shared-data
|
||||||
|
|
||||||
|
## 🔨 Build de l'image
|
||||||
# - name: kaniko-build
|
# - name: kaniko-build
|
||||||
# taskRef:
|
# taskRef:
|
||||||
# name: kaniko
|
# name: kaniko
|
||||||
@ -118,10 +126,7 @@ spec:
|
|||||||
# - name: dockerconfig
|
# - name: dockerconfig
|
||||||
# workspace: docker-credentials
|
# workspace: docker-credentials
|
||||||
# runAfter:
|
# runAfter:
|
||||||
# - fetch-source
|
# - php-unit-test
|
||||||
# # - php-cs-fixer
|
|
||||||
# # - phpstan
|
|
||||||
# # - php-security-check
|
|
||||||
# retries: 3
|
# retries: 3
|
||||||
|
|
||||||
|
|
||||||
|
@ -32,7 +32,7 @@ spec:
|
|||||||
value: issue-2977
|
value: issue-2977
|
||||||
- name: destination
|
- name: destination
|
||||||
value: sprint-8
|
value: sprint-8
|
||||||
- name: image
|
# - name: image
|
||||||
value: reg.cadoles.com/mlamalle/testtekton
|
# value: reg.cadoles.com/mlamalle/testtekton
|
||||||
- name: dockerfile
|
# - name: dockerfile
|
||||||
value: misc/docker/Dockerfile
|
# value: misc/docker/Dockerfile
|
||||||
|
@ -1,41 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
$finder = PhpCsFixer\Finder::create()
|
|
||||||
->in(__DIR__.'/src')
|
|
||||||
->name('*.php')
|
|
||||||
;
|
|
||||||
|
|
||||||
return (new PhpCsFixer\Config())
|
|
||||||
->setRules([
|
|
||||||
'@Symfony' => true,
|
|
||||||
'concat_space' => ['spacing' => 'none'],
|
|
||||||
'array_syntax' => ['syntax' => 'short'],
|
|
||||||
'combine_consecutive_issets' => true,
|
|
||||||
'explicit_indirect_variable' => true,
|
|
||||||
'no_useless_return' => true,
|
|
||||||
'ordered_imports' => true,
|
|
||||||
'no_unused_imports' => true,
|
|
||||||
'no_spaces_after_function_name' => true,
|
|
||||||
'no_spaces_inside_parenthesis' => true,
|
|
||||||
'ternary_operator_spaces' => true,
|
|
||||||
'class_definition' => ['single_line' => true],
|
|
||||||
'whitespace_after_comma_in_array' => true,
|
|
||||||
'phpdoc_add_missing_param_annotation' => ['only_untyped' => true],
|
|
||||||
'phpdoc_order' => true,
|
|
||||||
'phpdoc_types_order' => [
|
|
||||||
'null_adjustment' => 'always_last',
|
|
||||||
'sort_algorithm' => 'alpha',
|
|
||||||
],
|
|
||||||
'phpdoc_no_empty_return' => false,
|
|
||||||
'phpdoc_summary' => false,
|
|
||||||
'general_phpdoc_annotation_remove' => [
|
|
||||||
'annotations' => [
|
|
||||||
'expectedExceptionMessageRegExp',
|
|
||||||
'expectedException',
|
|
||||||
'expectedExceptionMessage',
|
|
||||||
'author',
|
|
||||||
],
|
|
||||||
],
|
|
||||||
])
|
|
||||||
->setFinder($finder)
|
|
||||||
;
|
|
@ -1,47 +0,0 @@
|
|||||||
ARG PHP_SECURITY_CHECKER_VERSION=1.0.0
|
|
||||||
ARG JQ_VERSION=1.6
|
|
||||||
|
|
||||||
RUN apt-get update && \
|
|
||||||
DEBIAN_FRONTEND=noninteractive apt-get install -y \
|
|
||||||
wget tar curl ca-certificates \
|
|
||||||
openssl bash git unzip \
|
|
||||||
php-cli php-dom php-mbstring php-ctype php-xml php-iconv
|
|
||||||
|
|
||||||
COPY add-letsencrypt-ca.sh /root/add-letsencrypt-ca.sh
|
|
||||||
|
|
||||||
RUN bash /root/add-letsencrypt-ca.sh \
|
|
||||||
&& rm -f /root/add-letsencrypt-ca.sh
|
|
||||||
|
|
||||||
RUN wget -O /usr/local/bin/jq https://github.com/stedolan/jq/releases/download/jq-${JQ_VERSION}/jq-linux64 \
|
|
||||||
&& chmod +x /usr/local/bin/jq
|
|
||||||
|
|
||||||
# Install local-php-security-checker
|
|
||||||
RUN wget -O /usr/local/bin/local-php-security-checker https://github.com/fabpot/local-php-security-checker/releases/download/v${PHP_SECURITY_CHECKER_VERSION}/local-php-security-checker_${PHP_SECURITY_CHECKER_VERSION}_linux_amd64 \
|
|
||||||
&& chmod +x /usr/local/bin/local-php-security-checker
|
|
||||||
|
|
||||||
# Install junit2md
|
|
||||||
RUN junit2md_download_url=$(curl "https://forge.cadoles.com/api/v1/repos/Cadoles/junit2md/releases" -H "accept:application/json" | jq -r 'sort_by(.published_at) | reverse | .[0] | .assets[] | select(.name == "junit2md-linux-amd64.tar.gz") | .browser_download_url') \
|
|
||||||
&& wget -O junit2md-linux-amd64.tar.gz "$junit2md_download_url" \
|
|
||||||
&& tar -xzf junit2md-linux-amd64.tar.gz \
|
|
||||||
&& cp junit2md-linux-amd64/junit2md /usr/local/bin/junit2md
|
|
||||||
|
|
||||||
# Install composer
|
|
||||||
RUN wget https://raw.githubusercontent.com/composer/getcomposer.org/76a7060ccb93902cd7576b67264ad91c8a2700e2/web/installer -O - -q | php -- --force --install-dir /usr/local/bin --filename composer \
|
|
||||||
&& chmod +x /usr/local/bin/composer
|
|
||||||
|
|
||||||
# Install php-cs-fixer
|
|
||||||
RUN mkdir --parents /tools/php-cs-fixer \
|
|
||||||
&& composer require --working-dir=/tools/php-cs-fixer friendsofphp/php-cs-fixer \
|
|
||||||
&& ln -s /tools/php-cs-fixer/vendor/bin/php-cs-fixer /usr/local/bin/php-cs-fixer
|
|
||||||
|
|
||||||
# Install php-stan
|
|
||||||
RUN mkdir --parents /tools/phpstan \
|
|
||||||
&& composer require --working-dir=/tools/phpstan phpstan/phpstan \
|
|
||||||
&& ln -s /tools/phpstan/vendor/bin/phpstan /usr/local/bin/phpstan \
|
|
||||||
&& composer require --working-dir=/tools/phpstan phpstan/phpstan-symfony \
|
|
||||||
&& composer require --working-dir=/tools/phpstan phpstan/phpstan-doctrine
|
|
||||||
|
|
||||||
# Install Symfony
|
|
||||||
RUN curl -1sLf 'https://dl.cloudsmith.io/public/symfony/stable/setup.deb.sh' | bash \
|
|
||||||
&& apt update \
|
|
||||||
&& DEBIAN_FRONTEND=noninteractive apt-get install -y symfony-cli
|
|
@ -1,4 +0,0 @@
|
|||||||
includes:
|
|
||||||
- /tools/phpstan/vendor/phpstan/phpstan-symfony/extension.neon
|
|
||||||
- /tools/phpstan/vendor/phpstan/phpstan-doctrine/extension.neon
|
|
||||||
- /tools/phpstan/vendor/phpstan/phpstan-doctrine/rules.neon
|
|
@ -1,41 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
$finder = PhpCsFixer\Finder::create()
|
|
||||||
->in(__DIR__.'/src')
|
|
||||||
->name('*.php')
|
|
||||||
;
|
|
||||||
|
|
||||||
return (new PhpCsFixer\Config())
|
|
||||||
->setRules([
|
|
||||||
'@Symfony' => true,
|
|
||||||
'concat_space' => ['spacing' => 'none'],
|
|
||||||
'array_syntax' => ['syntax' => 'short'],
|
|
||||||
'combine_consecutive_issets' => true,
|
|
||||||
'explicit_indirect_variable' => true,
|
|
||||||
'no_useless_return' => true,
|
|
||||||
'ordered_imports' => true,
|
|
||||||
'no_unused_imports' => true,
|
|
||||||
'no_spaces_after_function_name' => true,
|
|
||||||
'no_spaces_inside_parenthesis' => true,
|
|
||||||
'ternary_operator_spaces' => true,
|
|
||||||
'class_definition' => ['single_line' => true],
|
|
||||||
'whitespace_after_comma_in_array' => true,
|
|
||||||
'phpdoc_add_missing_param_annotation' => ['only_untyped' => true],
|
|
||||||
'phpdoc_order' => true,
|
|
||||||
'phpdoc_types_order' => [
|
|
||||||
'null_adjustment' => 'always_last',
|
|
||||||
'sort_algorithm' => 'alpha',
|
|
||||||
],
|
|
||||||
'phpdoc_no_empty_return' => false,
|
|
||||||
'phpdoc_summary' => false,
|
|
||||||
'general_phpdoc_annotation_remove' => [
|
|
||||||
'annotations' => [
|
|
||||||
'expectedExceptionMessageRegExp',
|
|
||||||
'expectedException',
|
|
||||||
'expectedExceptionMessage',
|
|
||||||
'author',
|
|
||||||
],
|
|
||||||
],
|
|
||||||
])
|
|
||||||
->setFinder($finder)
|
|
||||||
;
|
|
@ -1,47 +0,0 @@
|
|||||||
ARG PHP_SECURITY_CHECKER_VERSION=1.0.0
|
|
||||||
ARG JQ_VERSION=1.6
|
|
||||||
|
|
||||||
RUN apt-get update && \
|
|
||||||
DEBIAN_FRONTEND=noninteractive apt-get install -y \
|
|
||||||
wget tar curl ca-certificates \
|
|
||||||
openssl bash git unzip \
|
|
||||||
php-cli php-dom php-mbstring php-ctype php-xml php-iconv
|
|
||||||
|
|
||||||
COPY add-letsencrypt-ca.sh /root/add-letsencrypt-ca.sh
|
|
||||||
|
|
||||||
RUN bash /root/add-letsencrypt-ca.sh \
|
|
||||||
&& rm -f /root/add-letsencrypt-ca.sh
|
|
||||||
|
|
||||||
RUN wget -O /usr/local/bin/jq https://github.com/stedolan/jq/releases/download/jq-${JQ_VERSION}/jq-linux64 \
|
|
||||||
&& chmod +x /usr/local/bin/jq
|
|
||||||
|
|
||||||
# Install local-php-security-checker
|
|
||||||
RUN wget -O /usr/local/bin/local-php-security-checker https://github.com/fabpot/local-php-security-checker/releases/download/v${PHP_SECURITY_CHECKER_VERSION}/local-php-security-checker_${PHP_SECURITY_CHECKER_VERSION}_linux_amd64 \
|
|
||||||
&& chmod +x /usr/local/bin/local-php-security-checker
|
|
||||||
|
|
||||||
# Install junit2md
|
|
||||||
RUN junit2md_download_url=$(curl "https://forge.cadoles.com/api/v1/repos/Cadoles/junit2md/releases" -H "accept:application/json" | jq -r 'sort_by(.published_at) | reverse | .[0] | .assets[] | select(.name == "junit2md-linux-amd64.tar.gz") | .browser_download_url') \
|
|
||||||
&& wget -O junit2md-linux-amd64.tar.gz "$junit2md_download_url" \
|
|
||||||
&& tar -xzf junit2md-linux-amd64.tar.gz \
|
|
||||||
&& cp junit2md-linux-amd64/junit2md /usr/local/bin/junit2md
|
|
||||||
|
|
||||||
# Install composer
|
|
||||||
RUN wget https://raw.githubusercontent.com/composer/getcomposer.org/76a7060ccb93902cd7576b67264ad91c8a2700e2/web/installer -O - -q | php -- --force --install-dir /usr/local/bin --filename composer \
|
|
||||||
&& chmod +x /usr/local/bin/composer
|
|
||||||
|
|
||||||
# Install php-cs-fixer
|
|
||||||
RUN mkdir --parents /tools/php-cs-fixer \
|
|
||||||
&& composer require --working-dir=/tools/php-cs-fixer friendsofphp/php-cs-fixer \
|
|
||||||
&& ln -s /tools/php-cs-fixer/vendor/bin/php-cs-fixer /usr/local/bin/php-cs-fixer
|
|
||||||
|
|
||||||
# Install php-stan
|
|
||||||
RUN mkdir --parents /tools/phpstan \
|
|
||||||
&& composer require --working-dir=/tools/phpstan phpstan/phpstan \
|
|
||||||
&& ln -s /tools/phpstan/vendor/bin/phpstan /usr/local/bin/phpstan \
|
|
||||||
&& composer require --working-dir=/tools/phpstan phpstan/phpstan-symfony \
|
|
||||||
&& composer require --working-dir=/tools/phpstan phpstan/phpstan-doctrine
|
|
||||||
|
|
||||||
# Install Symfony
|
|
||||||
RUN curl -1sLf 'https://dl.cloudsmith.io/public/symfony/stable/setup.deb.sh' | bash \
|
|
||||||
&& apt update \
|
|
||||||
&& DEBIAN_FRONTEND=noninteractive apt-get install -y symfony-cli
|
|
@ -1,4 +0,0 @@
|
|||||||
includes:
|
|
||||||
- /tools/phpstan/vendor/phpstan/phpstan-symfony/extension.neon
|
|
||||||
- /tools/phpstan/vendor/phpstan/phpstan-doctrine/extension.neon
|
|
||||||
- /tools/phpstan/vendor/phpstan/phpstan-doctrine/rules.neon
|
|
Loading…
x
Reference in New Issue
Block a user