-
Notifications
You must be signed in to change notification settings - Fork 1
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
Move the containers build to CI #37
Draft
chris-zen
wants to merge
1
commit into
develop
Choose a base branch
from
dev/containers-ci
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Move the containers build to CI
- Loading branch information
commit ad151492a356b6ce3a5a3ba0422ca3dd5a741354
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,120 @@ | ||
name: Containers | ||
|
||
on: | ||
push: | ||
tags: | ||
- "**" | ||
branches: | ||
- "**" | ||
paths: | ||
- "build/containers/**" | ||
- "core" | ||
- "combination" | ||
|
||
jobs: | ||
checks: | ||
name: Run quality checks | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install requirements | ||
run: | | ||
sc_version="stable" # or "v0.4.7", or "latest" | ||
hl_version="v2.12.0" | ||
case $( uname -m ) in | ||
arm64 | aarch64 ) | ||
sc_platform=aarch64 | ||
hl_platform=arm64 | ||
;; | ||
*) | ||
sc_platform=$( uname -m ) | ||
hl_platform="${sc_platform}" | ||
;; | ||
esac | ||
|
||
echo "Installing shellcheck ..." | ||
wget -qO- "https://github.com/koalaman/shellcheck/releases/download/${sc_version?}/shellcheck-${sc_version?}.linux.${sc_platform}.tar.xz" \ | ||
| tar -xJv >/dev/null | ||
sudo cp "shellcheck-${sc_version}/shellcheck" /usr/bin/ | ||
shellcheck --version | ||
|
||
echo "Installing hadolint ..." | ||
wget -q https://github.com/hadolint/hadolint/releases/download/${hl_version}/hadolint-Linux-${hl_platform} | ||
sudo cp "hadolint-Linux-${hl_platform}" /usr/bin/hadolint | ||
sudo chmod 755 /usr/bin/hadolint | ||
hadolint --version | ||
|
||
- name: Run quality checks | ||
run: | | ||
make -C build/containers checks | ||
|
||
list: | ||
name: List containers | ||
runs-on: ubuntu-latest | ||
env: | ||
IS_TAG: ${{ startsWith(github.ref, 'refs/tags/') }} | ||
outputs: | ||
containers: ${{ steps.list-containers.outputs.containers }} | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 2 | ||
|
||
- id: list-containers | ||
name: Determine containers | ||
run: | | ||
if [ "${IS_TAG}" == "false" ]; then | ||
echo "Listing only the containers with changes" | ||
containers=$( build/containers/build.sh --changed-containers-as-json) | ||
elif [ "${IS_TAG}" == "true" ]; then | ||
echo "Listing all the containers" | ||
containers=$( build/containers/build.sh --all-containers-as-json) | ||
fi | ||
echo "containers = ${containers}" | ||
echo "containers=${containers}" >> "$GITHUB_OUTPUT" | ||
|
||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
needs: | ||
- checks | ||
- list | ||
strategy: | ||
max-parallel: 8 | ||
fail-fast: false | ||
matrix: | ||
container: ${{ fromJSON(needs.list.outputs.containers) }} | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Build Docker image | ||
run: build/containers/build.sh --containers ${{ matrix.container }} | ||
|
||
push: | ||
name: Push | ||
if: startsWith(github.ref, 'refs/tags/') | ||
runs-on: ubuntu-latest | ||
env: | ||
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | ||
needs: | ||
- build | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Login to DockerHub | ||
if: ${{ env.DOCKER_USERNAME != '' }} | ||
run: echo ${{ secrets.DOCKER_PASSWORD }} | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin | ||
|
||
- name: Push Docker images | ||
if: ${{ env.DOCKER_USERNAME != '' }} | ||
run: | | ||
build/containers/build.sh --dry-run --skip-build --push --all-containers | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
CURRENT_DIR := $(shell dirname $(abspath $(lastword $(MAKEFILE_LIST)))) | ||
|
||
BUILD := $(CURRENT_DIR)/build.sh | ||
BUILD_ARGS ?= | ||
|
||
SHELLCHECK_BIN ?= shellcheck | ||
SHELLCHECK_ARGS ?= | ||
|
||
HADOLINT_IGNORES := DL3059 # Multiple consecutive `RUN` instructions | ||
HADOLINT_IGNORES += DL3003 # Use WORKDIR to switch to a directory | ||
HADOLINT_IGNORES += DL3042 # Avoid use of cache directory with pip | ||
|
||
# HADOLINT_BIN := docker run --rm -i hadolint/hadolint hadolint | ||
HADOLINT_BIN ?= hadolint | ||
HADOLINT_ARGS ?= $(foreach ignore,$(HADOLINT_IGNORES),--ignore $(ignore)) | ||
|
||
# Those ANSI codes are needed to print with colours | ||
GREEN := \033[0;32m | ||
WHITE := \033[0;37m | ||
BOLD := \033[1m | ||
BOLD_GREEN := $(GREEN)$(BOLD) | ||
BOLD_WHITE := $(WHITE)$(BOLD) | ||
RESET := \033[0m | ||
|
||
.DEFAULT_GOAL = checks | ||
|
||
.PHONY: checks | ||
checks: shellcheck hadolint | ||
|
||
.PHONY: shellcheck | ||
shellcheck: | ||
@echo "$(BOLD_GREEN)Running cheks for shell scripts ...$(RESET)" | ||
set -e; \ | ||
find -L $(CURRENT_DIR) -name '*.sh' | sed 's|$(CURRENT_DIR)/||' \ | ||
| while read -r script; do \ | ||
echo "$(BOLD_WHITE)=> $${script}$(RESET)"; \ | ||
$(SHELLCHECK_BIN) $(SHELLCHECK_ARGS) $${script}; \ | ||
done | ||
|
||
.PHONY: hadolint | ||
hadolint: | ||
@echo "$(BOLD_GREEN)Running checks for Dockerfile ...$(RESET)" | ||
set -e; \ | ||
find -L $(CURRENT_DIR) -name 'Dockerfile' | sed 's|$(CURRENT_DIR)/||' \ | ||
| while read -r dockerfile; do \ | ||
echo "$(BOLD_WHITE)=> $${dockerfile}$(RESET)"; \ | ||
$(HADOLINT_BIN) $(HADOLINT_ARGS) - < $${dockerfile}; \ | ||
done | ||
|
||
.PHONY: build-all | ||
build-all: | ||
$(BUILD) --all-containers $(BUILD_ARGS) | ||
|
||
.PHONY: build-changes | ||
build-changes: | ||
$(BUILD) $(BUILD_ARGS) | ||
|
||
.PHONY: push-all | ||
push-all: | ||
$(BUILD) --push --all-containers $(BUILD_ARGS) | ||
|
||
.PHONY: push-changes | ||
push-changes: | ||
$(BUILD) --push $(BUILD_ARGS) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
# Containers | ||
|
||
This folder contains all the containers needed by the intogen pipelines specifically. | ||
|
||
Every container will have an independent folder here or a link to another folder in the repository. Every of those folders need to include a `Dockerfile` with the specs to build the Docker image. | ||
|
||
## CI/CD | ||
|
||
The Github workflow `containers.yaml` will run the following jobs: | ||
- Run some quality checks to make sure that we follow the best practices | ||
- Determine which containers need to be built and/or pushed: | ||
- When the push corresponds with a tag, all the containers will be built and pushed. | ||
- When this is a regular push into a branch, only the containers that were modified will be built to make sure that they are not broken by the changes. | ||
|
||
You can run the workflow locally with the following command: | ||
|
||
```shell | ||
act -W '.github/workflows/containers.yaml' | ||
``` | ||
|
||
Note that you will need to install the tool [act](https://github.com/nektos/act). | ||
|
||
## Local Development | ||
|
||
You can run the following commands (note that you can skip the `-C build/containers` argument if you run the commands from the `build/containers` folder): | ||
|
||
### Running quality checks | ||
|
||
We run two types of checks: | ||
- [shellcheck](https://github.com/koalaman/shellcheck) to make sure that bash scripts follow the best practices | ||
- [hadolint](https://github.com/hadolint/hadolint) to make sure that Dockerfiles follow the best practices | ||
|
||
You will need to install them in your computer before running the following commands: | ||
|
||
- To run both checks: | ||
|
||
```shell | ||
make -C build/containers checks | ||
``` | ||
|
||
- Or individually with: | ||
|
||
```shell | ||
make -C build/containers shellcheck | ||
``` | ||
|
||
```shell | ||
make -C build/containers hadolint | ||
``` | ||
|
||
### Building all the containers | ||
|
||
```shell | ||
make -C build/containers build-all | ||
``` | ||
|
||
### Building only the containers that were modified | ||
|
||
```shell | ||
make -C build/containers build-changed | ||
``` |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The pushing of container should be to the bbglab/ repository