build #2
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: build | |
on: | |
workflow_dispatch: | |
# push: | |
# branches: | |
# - '*' | |
# tags: | |
# - '*' | |
# paths-ignore: | |
# - 'docs/**' | |
# - 'deploy/**' | |
# - '*.md' | |
# - '*.yaml' | |
# - '*.sh' | |
# pull_request: | |
# branches: | |
# - '*' | |
permissions: | |
packages: write | |
contents: read | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
if: ${{ !contains(github.event.head_commit.message,'[skip ci]') }} | |
container: golang:1.21-alpine | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: test | |
shell: sh | |
env: | |
CGO_ENABLED: 0 | |
run: | | |
apk --update add ca-certificates tzdata make git bash | |
make lint | |
make test-json | |
- name: upload test results | |
uses: actions/upload-artifact@v3 | |
if: ${{ always() }} | |
with: | |
name: test-reports | |
if-no-files-found: ignore | |
path: | | |
golangci-lint.out | |
test-report.out | |
coverage.out | |
# - name: SonarCloud scan | |
# uses: SonarSource/sonarcloud-github-action@master | |
# if: ${{ always() }} | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any | |
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
docker-build: | |
runs-on: ubuntu-latest | |
needs: validate | |
# build only on master branch and tags | |
if: ${{ | |
!contains(github.event.head_commit.message, '[skip ci]') && | |
( | |
(github.event_name == 'push' && (github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/'))) || | |
(github.event_name == 'pull_request' && github.event.pull_request.draft == false) | |
) | |
}} | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- name: get short sha | |
id: short_sha | |
run: echo ::set-output name=sha::$(git rev-parse --short HEAD) | |
- name: get version | |
id: version | |
run: echo ::set-output name=version::$([[ -z "${{ github.event.pull_request.number }}" ]] && echo "sha-${{ steps.short_sha.outputs.sha }}" || echo "pr-${{ github.event.pull_request.number }}") | |
- name: set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: set up Docker buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v3 | |
# - name: login to DockerHub | |
# uses: docker/login-action@v3 | |
# with: | |
# username: ${{ secrets.DOCKERHUB_USERNAME }} | |
# password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- id: login | |
name: Log in to the Container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: prepare meta | |
id: meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: ghcr.io/${{ github.repository }}/kubeip-agent | |
tags: | | |
type=ref,event=branch | |
type=ref,event=pr | |
type=semver,pattern={{version}} | |
type=semver,pattern={{major}}.{{minor}} | |
type=semver,pattern={{major}} | |
type=sha | |
labels: | | |
github.run.id=${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }} | |
org.opencontainers.image.title=kubeip-agent | |
org.opencontainers.image.description=kubeip agent | |
org.opencontainers.image.vendor=DoiT International | |
- name: build and push | |
uses: docker/build-push-action@v5 | |
with: | |
build-args: | | |
VERSION=${{ steps.version.outputs.version }} | |
COMMIT=${{ steps.short_sha.outputs.sha }} | |
BRANCH=${{ github.ref_name }} | |
push: true | |
platforms: linux/amd64,linux/arm64 | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} |