Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(hooks): add pre-commit git hook #33

Merged
merged 2 commits into from
Aug 20, 2022
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
14 changes: 7 additions & 7 deletions .circleci/workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ jobs:

- run:
name: Verify Base
command: make verify-ci environment=base
command: make ci-verify environment=base

verify-build:
executor: base
Expand All @@ -111,7 +111,7 @@ jobs:

- run:
name: Verify Build
command: make verify-ci environment=build
command: make ci-verify environment=build

verify-deploy:
executor: base
Expand All @@ -124,7 +124,7 @@ jobs:

- run:
name: Verify Deploy
command: make verify-ci environment=deploy
command: make ci-verify environment=deploy

verify-publish:
executor: base
Expand All @@ -137,7 +137,7 @@ jobs:

- run:
name: Verify Publish
command: make verify-ci environment=publish
command: make ci-verify environment=publish

tests:
executor: base
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:

- run:
name: Build Site
command: make build-ci
command: make ci-build

- when:
condition:
Expand Down Expand Up @@ -194,7 +194,7 @@ jobs:
- run:
name: Deploy To Netlify
command: >
make deploy-ci
make ci-deploy
id=$NETLIFY_SITE_ID
token=$NETLIFY_ACCESS_TOKEN

Expand All @@ -214,7 +214,7 @@ jobs:
- run:
name: Publish To Docker Hub
command: >
make publish-ci
make ci-publish
tag=$CIRCLE_TAG
username=$DOCKER_USERNAME
token=$DOCKER_ACCESS_TOKEN
Expand Down
21 changes: 21 additions & 0 deletions .githooks/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/bin/bash
PREFIX="pre-commit:"
STAGED_FILES=$(git diff --diff-filter=d --cached --name-only)
CI_FILES=$(echo "$STAGED_FILES" | grep .circleci)
TESTS_FILES=$(echo "$STAGED_FILES" | grep tests)

if [ ${#CI_FILES} -gt 0 ]; then
if ! make all-ci; then
echo "$PREFIX Error during CI files validation."
exit 1
fi
fi

if [ ${#TESTS_FILES} -gt 0 ]; then
if ! make all-tests; then
echo "$PREFIX Error during tests validation."
exit 1
fi
fi

echo "$PREFIX Run successfully."
40 changes: 22 additions & 18 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,10 @@ CI_IMAGE_NAME = airscript/ci:base
.PHONY: all
all: build run

.PHONY: setup
setup:
git config --local core.hooksPath .githooks/

.PHONY: clean
clean:
docker compose down
Expand Down Expand Up @@ -40,26 +44,26 @@ build-tests:

.PHONY: run-tests
run-tests:
docker run --rm -it $(TESTS_IMAGE_NAME) && \
docker run --rm $(TESTS_IMAGE_NAME) && \
docker rmi $(TESTS_IMAGE_NAME)

.PHONY: all-ci-configs
all-ci-configs: build-ci-configs run-ci-configs
.PHONY: all-ci
all-ci: build-ci run-ci

.PHONY: clean-ci-configs
clean-ci-configs:
.PHONY: clean-ci
clean-ci:
docker rmi $(CI_IMAGE_NAME)

.PHONY: build-ci-configs
build-ci-configs:
.PHONY: build-ci
build-ci:
mkdir -p tmp && \
cp -r .circleci .docker scripts Makefile tmp && \
docker build -f .docker/dockerfiles/ci.Dockerfile -t $(CI_IMAGE_NAME) .; \
rm -rf tmp

.PHONY: run-ci-configs
run-ci-configs:
docker run --rm -it $(CI_IMAGE_NAME) && \
.PHONY: run-ci
run-ci:
docker run --rm $(CI_IMAGE_NAME) && \
docker rmi $(CI_IMAGE_NAME)

.PHONY: install-bash
Expand Down Expand Up @@ -98,20 +102,20 @@ install-circleci-cli:
install-netlify-cli:
bash ./scripts/install/netlify-cli.sh

.PHONY: verify-ci
verify-ci:
.PHONY: ci-verify
ci-verify:
bash ./scripts/ci/verify.sh $(environment)

.PHONY: build-ci
build-ci:
.PHONY: ci-build
ci-builds:
bash ./scripts/ci/build.sh

.PHONY: deploy-ci
deploy-ci:
.PHONY: ci-deploy
ci-deploy:
bash ./scripts/ci/deploy.sh $(id) $(token)

.PHONY: publish-ci
publish-ci: docker-login docker-build docker-push
.PHONY: ci-publish
ci-publish: docker-login docker-build docker-push

.PHONY: git-submodules
git-submodules:
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,15 @@ Follow the steps below in order to have one fully functional.
```

2. Make sure to have these dependencies installed on your machine:
- [Bash](https://www.gnu.org/software/bash/)
- [Make](https://www.gnu.org/software/make/)
- [Git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git)
- [Docker](https://docs.docker.com/get-docker/)
- [Docker Compose](https://docs.docker.com/compose/install/)

3. Run the following command in the repository's root folder:
3. Run the following commands in the repository's root folder:
```bash
make setup
make all
```

Expand Down