Skip to content

Commit

Permalink
Migrate to GHA for containerd
Browse files Browse the repository at this point in the history
Signed-off-by: galal-hussein <[email protected]>
  • Loading branch information
galal-hussein committed May 8, 2024
1 parent bc4ab52 commit f56ed99
Show file tree
Hide file tree
Showing 4 changed files with 169 additions and 177 deletions.
177 changes: 0 additions & 177 deletions .drone.yml

This file was deleted.

108 changes: 108 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,108 @@
on:

Check failure on line 1 in .github/workflows/build.yml

View workflow job for this annotation

GitHub Actions / build-arm64

.github/workflows/build.yml#L1

This run was manually canceled.
push:
branches:
- master
pull_request:

name: Build
jobs:
build-amd64:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set the TAG value
id: get-TAG
run: |
echo "$(make -s log | grep TAG)" >> "$GITHUB_ENV"
- name: Build container image
uses: docker/build-push-action@v5
with:
context: .
push: false
tags: husseingalal/hardened-containerd:${{ env.TAG }}-amd64-linux
file: Dockerfile

- name: Run Trivy vulnerability scanner
uses: aquasecurity/[email protected]
with:
image-ref: husseingalal/hardened-containerd:${{ env.TAG }}-amd64-linux
format: 'table'
exit-code: '1'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH'

build-arm64:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Set the TAG value
id: get-TAG
run: |
echo "$(make -s log | grep TAG)" >> "$GITHUB_ENV"
- name: Build container image
uses: docker/build-push-action@v5
with:
context: .
push: false
tags: husseingalal/hardened-containerd:${{ env.TAG }}-arm64-linux
file: Dockerfile
outputs: type=docker
platforms: linux/arm64

- name: Run Trivy vulnerability scanner
uses: aquasecurity/[email protected]
with:
image-ref: husseingalal/hardened-containerd:${{ env.TAG }}-arm64-linux
format: 'table'
exit-code: '1'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH'

build-windows:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Set the TAG value
id: get-TAG
run: |
echo "$(make -s log | grep TAG)" >> "$GITHUB_ENV"
- name: Build container image
uses: docker/build-push-action@v5
with:
context: .
push: false
tags: husseingalal/hardened-containerd:${{ env.TAG }}-amd64-windows
file: Dockerfile.windows
outputs: type=docker
platforms: windows/amd64

- name: Run Trivy vulnerability scanner
uses: aquasecurity/[email protected]
with:
image-ref: husseingalal/hardened-containerd:${{ env.TAG }}-amd64-windows
format: 'table'
exit-code: '1'
ignore-unfixed: true
vuln-type: 'os,library'
severity: 'CRITICAL,HIGH'

50 changes: 50 additions & 0 deletions .github/workflows/image-push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
on:
release:
types: [published]

jobs:
push-multiarch:
permissions:
contents: read
id-token: write
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v4

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

# - name: "Read secrets"
# uses: husseingalal-eio/read-vault-secrets@main
# with:
# secrets: |
# secret/data/github/repo/${{ github.repository }}/dockerhub/${{ github.repository_owner }}/credentials username | DOCKER_USERNAME ;
# secret/data/github/repo/${{ github.repository }}/dockerhub/${{ github.repository_owner }}/credentials password | DOCKER_PASSWORD

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Login to Container Registry
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build container image for Linux
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: husseingalal/hardened-containerd:${{ github.event.release.tag_name }}
file: Dockerfile
platforms: linux/amd64, linux/arm64

- name: Build container image for Windows
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: husseingalal/hardened-containerd:${{ github.event.release.tag_name }}
file: Dockerfile.Windows
platforms: windows/amd64
11 changes: 11 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -62,3 +62,14 @@ image-manifest:
.PHONY: image-scan
image-scan:
trivy image --severity $(SEVERITIES) --no-progress --ignore-unfixed $(ORG)/hardened-containerd:$(TAG)-$(ARCH)-$(OS)

.PHONY: log
log:
@echo "ARCH=$(ARCH)"
@echo "TAG=$(TAG)"
@echo "ORG=$(ORG)"
@echo "PKG=$(PKG)"
@echo "SRC=$(SRC)"
@echo "BUILD_META=$(BUILD_META)"
@echo "K3S_ROOT_VERSION=$(K3S_ROOT_VERSION)"
@echo "UNAME_M=$(UNAME_M)"

0 comments on commit f56ed99

Please sign in to comment.