Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
109 changes: 109 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,109 @@
---

###
### Enable sudo (required for docker service)
###
sudo: required


###
### Language
###
language: python


###
### Add services
###
services:
- docker


###
### Build Matrix
###
env:
matrix:
- PHPCBF=2 PHP=5.6
- PHPCBF=3 PHP=5.6
- PHPCBF=latest PHP=5.6
- PHPCBF=2 PHP=7.0
- PHPCBF=3 PHP=7.0
- PHPCBF=latest PHP=7.0
- PHPCBF=2 PHP=7.1
- PHPCBF=3 PHP=7.1
- PHPCBF=latest PHP=7.1
- PHPCBF=2 PHP=7.2
- PHPCBF=3 PHP=7.2
- PHPCBF=latest PHP=7.2
- PHPCBF=2 PHP=7.3
- PHPCBF=3 PHP=7.3
- PHPCBF=latest PHP=7.3
- PHPCBF=2 PHP=latest
- PHPCBF=3 PHP=latest
- PHPCBF=latest PHP=latest


###
### Install requirements
###
install:
# Get newer docker version
- while ! sudo apt-get update; do sleep 1; done
- while ! sudo apt-get -y -o Dpkg::Options::="--force-confnew" install docker-ce; do sleep 1; done
- docker version


###
### Check generation changes, build and test
###
before_script:
- make lint
- while ! make build PHPCBF=${PHPCBF} PHP=${PHP}; do sleep 1; done
- while ! make test PHPCBF=${PHPCBF} PHP=${PHP}; do sleep 1; done
- git diff --quiet || { echo "Build Changes"; git diff; git status; false; }


###
### Push to Dockerhub
###
script:
# Push to docker hub on success
- if [ "${TRAVIS_PULL_REQUEST}" == "false" ]; then
while ! make login USER="${DOCKER_USERNAME}" PASS="${DOCKER_PASSWORD}"; do sleep 1; done;
if [ -n "${TRAVIS_TAG}" ]; then
if [ "${PHPCBF}" == "latest" ] && [ "${PHP}" == "latest" ]; then
while ! make push TAG="latest-${TRAVIS_TAG}"; do sleep 1; done;
else
if [ "${PHP}" == "latest" ]; then
while ! make push TAG="${PHPCBF}-${TRAVIS_TAG}"; do sleep 1; done;
else
while ! make push TAG="${PHPCBF}-php${PHP}-${TRAVIS_TAG}"; do sleep 1; done;
fi
fi
elif [ "${TRAVIS_BRANCH}" == "master" ]; then
if [ "${PHPCBF}" == "latest" ] && [ "${PHP}" == "latest" ]; then
while ! make push TAG=latest; do sleep 1; done;
else
if [ "${PHP}" == "latest" ]; then
while ! make push TAG=${PHPCBF}; do sleep 1; done;
else
while ! make push TAG=${PHPCBF}-php${PHP}; do sleep 1; done;
fi
fi
elif [[ ${TRAVIS_BRANCH} =~ ^(release-[.0-9]+)$ ]]; then
if [ "${PHPCBF}" == "latest" ] && [ "${PHP}" == "latest" ]; then
while ! make push TAG="latest-${TRAVIS_BRANCH}"; do sleep 1; done;
else
if [ "${PHP}" == "latest" ]; then
while ! make push TAG="${PHPCBF}-${TRAVIS_BRANCH}"; do sleep 1; done;
else
while ! make push TAG="${PHPCBF}-php${PHP}-${TRAVIS_BRANCH}"; do sleep 1; done;
fi
fi
else
echo "Skipping branch ${TRAVIS_BRANCH}";
fi
else
echo "Skipping push on PR";
fi
36 changes: 36 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
ARG PHP
FROM php:7.3 as builder

# Install build dependencies
RUN set -eux \
&& DEBIAN_FRONTEND=noninteractive apt-get update -qq \
&& DEBIAN_FRONTEND=noninteractive apt-get install -qq -y --no-install-recommends --no-install-suggests \
ca-certificates \
curl \
git \
&& git clone https://github.com/squizlabs/PHP_CodeSniffer

ARG PHPCBF
RUN set -eux \
&& cd PHP_CodeSniffer \
&& if [ "${PHPCBF}" = "latest" ]; then \
VERSION="$( git describe --abbrev=0 --tags )"; \
else \
VERSION="$( git tag | grep -E "^v?${PHPCBF}\.[.0-9]+\$" | sort -V | tail -1 )"; \
fi \
&& curl -sS -L https://github.com/squizlabs/PHP_CodeSniffer/releases/download/${VERSION}/phpcbf.phar -o /phpcbf.phar \
&& chmod +x /phpcbf.phar \
&& mv /phpcbf.phar /usr/bin/phpcbf


FROM php:${PHP} as production
LABEL \
maintainer="cytopia <[email protected]>" \
repo="https://github.com/cytopia/docker-phpcbf"

COPY --from=builder /usr/bin/phpcbf /usr/bin/phpcbf
ENV WORKDIR /data
WORKDIR /data

ENTRYPOINT ["phpcbf"]
CMD ["--version"]
21 changes: 21 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
MIT License

Copyright (c) 2019 cytopia <https://github.com/cytopia>

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
134 changes: 134 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,134 @@
ifneq (,)
.error This Makefile requires GNU Make.
endif

.PHONY: build rebuild lint test _test-phpcbf-version _test-php-version _test-run tag pull login push enter

CURRENT_DIR = $(dir $(abspath $(lastword $(MAKEFILE_LIST))))

DIR = .
FILE = Dockerfile
IMAGE = cytopia/phpcbf
TAG = latest

PHP = latest
PHPCBF = latest

build:
ifeq ($(PHP),latest)
docker build --build-arg PHP=7-cli-alpine --build-arg PHPCBF=$(PHPCBF) -t $(IMAGE) -f $(DIR)/$(FILE) $(DIR)
else
docker build --build-arg PHP=$(PHP)-cli-alpine --build-arg PHPCBF=$(PHPCBF) -t $(IMAGE) -f $(DIR)/$(FILE) $(DIR)
endif

rebuild: pull
ifeq ($(PHP),latest)
docker build --no-cache --build-arg PHP=7-cli-alpine --build-arg PHPCBF=$(PHPCBF) -t $(IMAGE) -f $(DIR)/$(FILE) $(DIR)
else
docker build --no-cache --build-arg PHP=$(PHP)-cli-alpine --build-arg PHPCBF=$(PHPCBF) -t $(IMAGE) -f $(DIR)/$(FILE) $(DIR)
endif

lint:
@docker run --rm -v $(CURRENT_DIR):/data cytopia/file-lint file-cr --text --ignore '.git/,.github/,tests/' --path .
@docker run --rm -v $(CURRENT_DIR):/data cytopia/file-lint file-crlf --text --ignore '.git/,.github/,tests/' --path .
@docker run --rm -v $(CURRENT_DIR):/data cytopia/file-lint file-trailing-single-newline --text --ignore '.git/,.github/,tests/' --path .
@docker run --rm -v $(CURRENT_DIR):/data cytopia/file-lint file-trailing-space --text --ignore '.git/,.github/,tests/' --path .
@docker run --rm -v $(CURRENT_DIR):/data cytopia/file-lint file-utf8 --text --ignore '.git/,.github/,tests/' --path .
@docker run --rm -v $(CURRENT_DIR):/data cytopia/file-lint file-utf8-bom --text --ignore '.git/,.github/,tests/' --path .

test:
@$(MAKE) --no-print-directory _test-phpcbf-version
@$(MAKE) --no-print-directory _test-php-version
@$(MAKE) --no-print-directory _test-run

_test-phpcbf-version:
@echo "------------------------------------------------------------"
@echo "- Testing correct phpcbf version"
@echo "------------------------------------------------------------"
@if [ "$(PHPCBF)" = "latest" ]; then \
echo "Fetching latest version from GitHub"; \
LATEST="$$( \
curl -L -sS https://github.com/squizlabs/PHP_CodeSniffer/releases \
| tac | tac \
| grep -Eo '/[.0-9]+?\.[.0-9]+/' \
| grep -Eo '[.0-9]+' \
| sort -V \
| tail -1 \
)"; \
echo "Testing for latest: $${LATEST}"; \
if ! docker run --rm $(IMAGE) --version | grep -E "^PHP_CodeSniffer[[:space:]]+version[[:space:]]+v?$${LATEST}"; then \
echo "Failed"; \
exit 1; \
fi; \
else \
echo "Testing for tag: $(PHPCBF).x.x"; \
if ! docker run --rm $(IMAGE) --version | grep -E "^PHP_CodeSniffer[[:space:]]+version[[:space:]]+v?$(PHPCBF)\.[.0-9]+"; then \
echo "Failed"; \
exit 1; \
fi; \
fi; \
echo "Success"; \

_test-php-version:
@echo "------------------------------------------------------------"
@echo "- Testing correct PHP version"
@echo "------------------------------------------------------------"
@if [ "$(PHP)" = "latest" ]; then \
echo "Fetching latest version from GitHub"; \
LATEST="$$( \
curl -L -sS https://github.com/php/php-src/releases \
| tac | tac \
| grep -Eo '/php-[.0-9]+?\.[.0-9]+"' \
| grep -Eo '[.0-9]+' \
| sort -V \
| tail -1 \
)"; \
echo "Testing for latest: $${LATEST}"; \
if ! docker run --rm --entrypoint=php $(IMAGE) --version | head -1 | grep -E "^PHP[[:space:]]+$${LATEST}[[:space:]]"; then \
echo "Failed"; \
exit 1; \
fi; \
else \
echo "Testing for tag: $(PHP).x"; \
if ! docker run --rm --entrypoint=php $(IMAGE) --version | head -1 | grep -E "^PHP[[:space:]]+$(PHP)\.[.0-9]+[[:space:]]"; then \
echo "Failed"; \
exit 1; \
fi; \
fi; \
echo "Success"; \

_test-run:
@echo "------------------------------------------------------------"
@echo "- Testing phpcbf (success)"
@echo "------------------------------------------------------------"
@if ! docker run --rm -v $(CURRENT_DIR)/tests/ok:/data $(IMAGE) .; then \
echo "Failed"; \
exit 1; \
fi; \
echo "Success";
@echo "------------------------------------------------------------"
@echo "- Testing phpcbf (failure)"
@echo "------------------------------------------------------------"
@if docker run --rm -v $(CURRENT_DIR)/tests/fail:/data --entrypoint=/bin/sh $(IMAGE) -c 'cat fail.php | phpcbf -'; then \
echo "Failed"; \
exit 1; \
fi; \
echo "Success";

tag:
docker tag $(IMAGE) $(IMAGE):$(TAG)

pull:
@grep -E '^\s*FROM' Dockerfile \
| sed -e 's/^FROM//g' -e 's/[[:space:]]*as[[:space:]]*.*$$//g' \
| xargs -n1 docker pull;

login:
yes | docker login --username $(USER) --password $(PASS)

push:
@$(MAKE) tag TAG=$(TAG)
docker push $(IMAGE):$(TAG)

enter:
docker run --rm --name $(subst /,-,$(IMAGE)) -it --entrypoint=/bin/sh $(ARG) $(IMAGE):$(TAG)
6 changes: 6 additions & 0 deletions tests/fail/fail.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
<?php

echo "test";

if ( 1 ==2) {
echo "asd"; }
14 changes: 14 additions & 0 deletions tests/ok/ok.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php
/**
* Ci test file
* php version 7
*
* @category Awesome-ci
* @package Phpcs
* @author cytopia <[email protected]>
* @copyright 2019 cytopia
* @license MIT, https://opensource.org/licenses/MIT
* @link https://github.com/cytopia/docker-phpcbf
*/

echo 'test';