Fix the Docker images for non-AMD64 platforms and update Go to 1.21 (… #68
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
name: CI | |
on: | |
push: | |
branches: | |
- 'main' | |
tags: | |
- 'v*.*.*' | |
pull_request: | |
branches: | |
- 'main' | |
jobs: | |
lint-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '1.18.0' | |
- name: Install dependencies | |
run: go install golang.org/x/lint/golint@latest | |
- name: Lint | |
run: golint -set_exit_status ./... | |
- name: Check gofmt | |
run: ./scripts/gofmt-check.sh | |
- name: Vet | |
run: go vet ./... | |
- name: Test | |
run: go test -race -coverprofile=coverage.txt -covermode=atomic -v ./... | |
- name: Upload Coverage | |
uses: codecov/codecov-action@v2 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
files: coverage.txt | |
flags: unittests | |
fail_ci_if_error: true | |
verbose: true | |
build-and-push-docker-images: | |
needs: lint-and-test | |
if: ${{ github.event_name != 'pull_request' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Docker meta | |
id: meta | |
uses: crazy-max/ghaction-docker-meta@v2 | |
with: | |
images: | | |
idgenchev/namespace-node-affinity | |
flavor: | | |
latest=true | |
tags: | | |
type=ref,event=branch | |
type=semver,pattern={{version}} | |
- name: Docker meta for the init container | |
id: initmeta | |
uses: crazy-max/ghaction-docker-meta@v2 | |
with: | |
images: | | |
idgenchev/namespace-node-affinity-init-container | |
flavor: | | |
latest=true | |
tags: | | |
type=ref,event=branch | |
type=semver,pattern={{version}} | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v1 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v1 | |
- name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push Webhook image | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
file: ./build/Dockerfile | |
push: ${{ github.event_name != 'pull_request' }} | |
platforms: linux/386,linux/amd64,linux/arm64 | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
- name: Build and push init container image | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
file: ./build/DockerfileInitContainer | |
push: ${{ github.event_name != 'pull_request' }} | |
platforms: linux/386,linux/amd64,linux/arm64 | |
tags: ${{ steps.initmeta.outputs.tags }} | |
labels: ${{ steps.initmeta.outputs.labels }} |