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

Automatic devcontainers.json Verify #44

Merged
merged 33 commits into from
Dec 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
fad603f
chore(assets): add keep files
airscripts Dec 25, 2022
215ffbb
change(docker): change email linked to label command
airscripts Dec 25, 2022
606749a
feat(scripts): add g++ install script
airscripts Dec 26, 2022
16d2cb4
feat(scripts): add python3 install script
airscripts Dec 26, 2022
2b6b317
fea(makefile): add install-python3 rule
airscripts Dec 26, 2022
833ccfc
feat(makefile): add install-g++ rule
airscripts Dec 26, 2022
b7f656f
feat(scripts): add devcontainers-cli install script
airscripts Dec 26, 2022
1c6a344
feat(makefile): add install-devcontainers-cli rule
airscripts Dec 26, 2022
e98ca7c
fix(scripts): change wrong repository name in devcontainers-cli script
airscripts Dec 26, 2022
0ced8c7
fix(makefile): change wrong rule name for devcontainers-cli
airscripts Dec 26, 2022
247741e
feat(scripts): add verify environment script
airscripts Dec 26, 2022
2927cd1
feat(githooks): add devcontainers verify pre-commit hook
airscripts Dec 26, 2022
c411f95
feat(docker): add devcontainer environment dockerfile
airscripts Dec 26, 2022
5de41d8
change(docker): change devcontainer environment dockerfile workdir fr…
airscripts Dec 26, 2022
1dfea42
change(scripts): change devcontainer environment config path in verif…
airscripts Dec 26, 2022
7a968a0
refactor(devcontainers): group devcontainer files into template folders
airscripts Dec 26, 2022
14fe45c
fix(docker): switch from tmp to home default folder in environment do…
airscripts Dec 26, 2022
dbdd70c
refactor(githooks): switch plain command with make rule invocation
airscripts Dec 26, 2022
ba50ae2
fix(scripts): fix incorrect path into environment verify script
airscripts Dec 26, 2022
83f526b
feat(makefile): add devcontainers rules
airscripts Dec 26, 2022
cf50d72
revert(devcontainers): rollback folder structure to mono config file
airscripts Dec 26, 2022
e7299f0
change(devcontainer): rename base image
airscripts Dec 26, 2022
79028a9
refactor(docker): rename environment dockerfile to devcontainer docke…
airscripts Dec 26, 2022
3ab5e92
refactor(scripts): rename environment folder to devcontainer
airscripts Dec 26, 2022
648237c
fix(githooks): change wrong rule for devcontainer
airscripts Dec 26, 2022
4676a81
refactor(makefile): fine tuning on devcontainer rules
airscripts Dec 26, 2022
6a55dcc
feat(docker): add entrypoint file for devcontainer dockerfile
airscripts Dec 26, 2022
a9d3641
docs: update README file
airscripts Dec 26, 2022
4da127e
refactor(makefile): add setup to all rule
airscripts Dec 26, 2022
b1de214
refactor(scripts): rename gpp install script
airscripts Dec 26, 2022
cdd555b
refactor(scripts): rename devcontainer cli install script
airscripts Dec 26, 2022
381d01c
refactor: rename gpp and devcontainer cli make rules
airscripts Dec 26, 2022
3f25aad
tests: add gpp, devcontainer cli and python3 install tests
airscripts Dec 26, 2022
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
8 changes: 4 additions & 4 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"image": "docker:20.10.22-dind-alpine3.17",
"name": "airscript-blog-environment",
"overrideCommand": false,
"postCreateCommand": "sh scripts/environment/setup.sh",
"name": "airscript-devcontainer",
"image": "docker:20.10.22-dind-alpine3.17",
"postCreateCommand": "sh scripts/devcontainer/setup.sh",

"forwardPorts": [
25001
Expand All @@ -11,7 +11,7 @@
"runArgs": [
"--init",
"--privileged",
"--name", "airscript-blog-environment"
"--name", "airscript-devcontainer"
],

"extensions": [
Expand Down
2 changes: 1 addition & 1 deletion .docker/dockerfiles/blog.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ FROM alpine:3.17 AS builder
make git-submodules environment=${BLOG_BUILD_ENVIRONMENT}

FROM alpine:3.17 AS runner
LABEL maintainer="Airscript <[email protected]>"
LABEL maintainer="Airscript <[email protected]>"
ENV BLOG_PORT=25001
ENV BLOG_INTERFACE=0.0.0.0
WORKDIR /home
Expand Down
2 changes: 1 addition & 1 deletion .docker/dockerfiles/ci.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM alpine:3.17 AS runner
LABEL maintainer="Airscript <[email protected]>"
LABEL maintainer="Airscript <[email protected]>"
WORKDIR /tmp
COPY tmp/ /tmp/

Expand Down
16 changes: 16 additions & 0 deletions .docker/dockerfiles/devcontainer.Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FROM docker:20.10.22-dind-alpine3.17 AS runner
LABEL maintainer="Airscript <[email protected]>"
WORKDIR /home
COPY tmp/ /home/

RUN \
sh scripts/update.sh && \
sh scripts/install/bash.sh && \
bash scripts/install/make.sh && \
make install-npm && \
make install-python3 && \
make install-gpp && \
make install-devcontainer-cli

ENTRYPOINT [ ".docker/scripts/devcontainer.docker-entrypoint.sh" ]
CMD ["devcontainer"]
2 changes: 1 addition & 1 deletion .docker/dockerfiles/tests.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM alpine:3.17 AS runner
LABEL maintainer="Airscript <[email protected]>"
LABEL maintainer="Airscript <[email protected]>"
WORKDIR /tmp
COPY tmp/ /tmp/

Expand Down
9 changes: 9 additions & 0 deletions .docker/scripts/devcontainer.docker-entrypoint.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/bash
set -e

if [ "$1" = 'devcontainer' ]; then
bash ./scripts/devcontainer/verify.sh

else
exec "$@"
fi
8 changes: 8 additions & 0 deletions .githooks/pre-commit
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ 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)
DEVCONTAINER_FILES=$(echo "$STAGED_FILES" | grep .devcontainer)

if [ ${#CI_FILES} -gt 0 ]; then
if ! make all-ci; then
Expand All @@ -18,4 +19,11 @@ if [ ${#TESTS_FILES} -gt 0 ]; then
fi
fi

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

echo "$PREFIX Run successfully."
51 changes: 49 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,17 @@ SHELL = /bin/sh
CI_IMAGE_NAME = airscript/ci:base
TESTS_IMAGE_NAME = airscript/tests:base
BLOG_IMAGE_NAME = airscript/blog:compose
DIND_IMAGE_NAME = docker:20.10.22-dind-alpine3.17

DEVCONTAINER_NAME = airscript-devcontainer-base
DEVCONTAINER_IMAGE_NAME = airscript/devcontainer:base
DEVCONTAINER_CLI_IMAGE_NAME = airscript/devcontainer:cli

.SUFFIXES:
.SUFFIXES: .sh

.PHONY: all
all: build run
all: setup build run

.PHONY: setup
setup:
Expand Down Expand Up @@ -76,9 +81,39 @@ run-ci:
docker run --rm $(CI_IMAGE_NAME) && \
docker rmi $(CI_IMAGE_NAME)

.PHONY: all-devcontainer
all-devcontainer: build-devcontainer run-devcontainer

.PHONY: build-devcontainer
build-devcontainer:
mkdir -p tmp
cp -r .devcontainer .docker scripts Makefile tmp

docker build \
-f .docker/dockerfiles/devcontainer.Dockerfile \
-t $(DEVCONTAINER_IMAGE_NAME) .

rm -rf tmp

.PHONY: run-devcontainer
run-devcontainer:
docker run \
--rm \
--name $(DEVCONTAINER_NAME) \
--volume /var/run/docker.sock:/var/run/docker.sock \
$(DEVCONTAINER_IMAGE_NAME)

make clean-devcontainer

.PHONY: clean-devcontainer
clean-devcontainer:
sh ./scripts/environment/teardown.sh
docker rmi $(DIND_IMAGE_NAME) || true
docker rmi $(DEVCONTAINER_IMAGE_NAME)
docker rmi $(DEVCONTAINER_CLI_IMAGE_NAME)

.PHONY: teardown-devcontainer
teardown-devcontainer:
sh ./scripts/devcontainer/teardown.sh

.PHONY: install-bash
install-bash:
Expand Down Expand Up @@ -116,6 +151,18 @@ install-circleci-cli:
install-netlify-cli:
bash ./scripts/install/netlify-cli.sh

.PHONY: install-python3
install-python3:
bash ./scripts/install/python3.sh

.PHONY: install-gpp
install-gpp:
bash ./scripts/install/gpp.sh

.PHONY: install-devcontainer-cli
install-devcontainer-cli:
bash ./scripts/install/devcontainer-cli.sh

.PHONY: ci-verify
ci-verify:
bash ./scripts/ci/verify.sh $(environment)
Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ Please note that only one path between *Classic* and *Dev Container* has to be f

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

Expand All @@ -52,7 +51,6 @@ To make it work here, be sure to have installed *Dev Containers* extension.

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

Expand Down
Empty file added assets/.gitkeep
Empty file.
Empty file added assets/css/.gitkeep
Empty file.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ sh scripts/install/bash.sh && \
bash scripts/install/git.sh && \
bash scripts/install/make.sh && \

bash scripts/environment/safeness.sh
bash scripts/devcontainer/safeness.sh
7 changes: 7 additions & 0 deletions scripts/devcontainer/teardown.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
#!/bin/sh
DEVCONTAINER_NAME="airscript-devcontainer"
DIND_IMAGE_NAME="docker:20.10.22-dind-alpine3.17"

docker stop $DEVCONTAINER_NAME
docker rm $DEVCONTAINER_NAME
docker rmi $DIND_IMAGE_NAME
2 changes: 2 additions & 0 deletions scripts/devcontainer/verify.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/bash
devcontainer build --workspace-folder . --image-name airscript/devcontainer:cli
7 changes: 0 additions & 7 deletions scripts/environment/teardown.sh

This file was deleted.

3 changes: 3 additions & 0 deletions scripts/install/devcontainer-cli.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
npm install -g @devcontainers/cli && \
echo "devcontainer CLI installed successfully."
3 changes: 3 additions & 0 deletions scripts/install/gpp.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
apk add g++ && \
echo "gpp installed successfully."
3 changes: 3 additions & 0 deletions scripts/install/python3.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
apk add python3 && \
echo "python3 installed successfully."
18 changes: 18 additions & 0 deletions tests/install.bats
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,18 @@ setup() {
refute_output --partial "ERROR"
}

@test "Install gpp" {
run ./scripts/install/gpp.sh
assert_output --partial "$INSTALL_GPP"
refute_output --partial "ERROR"
}

@test "Install python3" {
run ./scripts/install/python3.sh
assert_output --partial "$INSTALL_PYTHON3"
refute_output --partial "ERROR"
}

@test "Install npm" {
run ./scripts/install/npm.sh
assert_output --partial "$INSTALL_NPM"
Expand All @@ -50,6 +62,12 @@ setup() {
refute_output --partial "ERR!"
}

@test "Install devcontainer CLI" {
run ./scripts/install/devcontainer-cli.sh
assert_output --partial "$INSTALL_DEVCONTAINER_CLI"
refute_output --partial "ERR!"
}

@test "Install Bats" {
run ./scripts/install/bats.sh
assert_output --partial "$INSTALL_BATS"
Expand Down
8 changes: 6 additions & 2 deletions tests/mocks.sh
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
#!/bin/bash
readonly INSTALL_NPM="npm installed successfully."
readonly INSTALL_GIT="Git installed successfully."
readonly INSTALL_GPP="gpp installed successfully."
readonly INSTALL_BATS="Bats installed successfully."
readonly INSTALL_HUGO="Hugo installed successfully."
readonly INSTALL_MAKE="Make installed successfully."
readonly INSTALL_CURL="curl installed successfully."
readonly INSTALL_BASH="Bash installed successfully."
readonly SKIP_INSTALL_GIT="Git installation has been skipped."
readonly INSTALL_PYTHON3="python3 installed successfully."
readonly INSTALL_DOCKER_CLI="Docker CLI installed successfully."
readonly INSTALL_NETLIFY_CLI="Netlify CLI installed successfully."
readonly ADD_GIT_SUBMODULE_SKIPPED="Git submodule update skipped."
readonly INSTALL_CIRCLECI_CLI="CircleCI CLI installed successfully."
readonly INSTALL_DEVCONTAINER_CLI="devcontainer CLI installed successfully."

readonly SKIP_INSTALL_GIT="Git installation has been skipped."
readonly ADD_GIT_SUBMODULE_SKIPPED="Git submodule update skipped."
readonly ADD_GIT_SUBMODULE_EXECUTED="Git submodule update executed."