fix: Return error exit code when collectors fail #1376
Workflow file for this run
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: main | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- "*" | |
pull_request: | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository }} | |
jobs: | |
pre-commit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3.0.2 | |
with: | |
set-safe-directory: true | |
- uses: actions/setup-python@v2 | |
- uses: pre-commit/action@v2.0.0 | |
test: | |
name: test | |
runs-on: ubuntu-latest | |
container: golang:1.21-alpine3.17 | |
steps: | |
- name: Install git | |
run: apk add --update --no-cache git | |
- name: Checkout code | |
uses: actions/checkout@v3.0.2 | |
with: | |
fetch-depth: 0 | |
set-safe-directory: true | |
- name: Test | |
run: | | |
scripts/alpine-setup.sh | |
make test | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
container: golang:1.21-alpine3.17 | |
strategy: | |
matrix: | |
os: [linux, darwin, windows] | |
arch: [arm64, amd64] | |
exclude: | |
- os: windows | |
arch: arm64 | |
steps: | |
- name: Install git | |
run: apk add --update --no-cache git | |
- name: Checkout | |
uses: actions/checkout@v3.0.2 | |
with: | |
fetch-depth: 0 | |
set-safe-directory: true | |
- name: Build | |
run: | | |
git config --global --add safe.directory /__w/kube-no-trouble/kube-no-trouble | |
scripts/alpine-setup.sh | |
GOOS=${{ matrix.os }} GOARCH=${{ matrix.arch }} make all | |
make changelog | |
shell: sh | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Archive release artifacts | |
uses: actions/upload-artifact@v1 | |
with: | |
name: release-artifacts-${{ matrix.os }}-${{ matrix.arch }} | |
path: release-artifacts | |
build-docker: | |
name: Build Docker Image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
set-safe-directory: true | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
push: false | |
platforms: | | |
linux/arm64 | |
linux/amd64 | |
build-args: | | |
GITHUB_REF | |
GITHUB_SHA | |
cache-from: type=gha | |
cache-to: type=gha | |
integration-test: | |
name: integration test | |
needs: | |
[pre-commit, build, build-docker, test] | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
k8s_version: [ | |
"kindest/node:v1.19.16", | |
"kindest/node:v1.20.15", | |
"kindest/node:v1.21.14", | |
"kindest/node:v1.22.15", | |
"kindest/node:v1.23.13", | |
"kindest/node:v1.24.7", | |
"kindest/node:v1.25.3", | |
"kindest/node:v1.26.6", | |
"kindest/node:v1.27.3", | |
"kindest/node:v1.28.0" | |
] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3.0.2 | |
with: | |
fetch-depth: 0 | |
set-safe-directory: true | |
- uses: actions/download-artifact@v1 | |
with: | |
name: release-artifacts-linux-amd64 | |
path: release-artifacts | |
- name: Create k8s Kind Cluster | |
uses: helm/kind-action@v1.4.0 | |
with: | |
node_image: ${{ matrix.k8s_version }} | |
cluster_name: kubent-test-cluster | |
- name: run integration test | |
run: | | |
tar xvzf release-artifacts/kubent-*-linux-amd64.tar.gz | |
kubectl version --short | |
kubectl cluster-info --context kind-kubent-test-cluster | |
./kubent | |
create-release: | |
name: Create Release | |
needs: | |
[integration-test] | |
runs-on: ubuntu-latest | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') | |
outputs: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
tag_name: ${{ steps.get_tag.outputs.git_tag }} | |
steps: | |
- uses: actions/download-artifact@v1 | |
with: | |
name: release-artifacts-linux-amd64 | |
path: release-artifacts | |
- name: Get the tag | |
id: get_tag | |
run: echo ::set-output name=git_tag::${GITHUB_REF/refs\/tags\//} | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ steps.get_tag.outputs.git_tag }} | |
release_name: ${{ steps.get_tag.outputs.git_tag }} | |
body_path: ./release-artifacts/changelog.md | |
draft: ${{ startsWith(steps.get_tag.outputs.git_tag, 'nightly') != true }} | |
prerelease: ${{ startsWith(steps.get_tag.outputs.git_tag, 'nightly') }} | |
push-image: | |
name: Push Image | |
needs: | |
[create-release] | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Log in to the Container registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v3 | |
with: | |
context: . | |
push: true | |
platforms: | | |
linux/arm64 | |
linux/amd64 | |
tags: | | |
${{ format('{0}/{1}:{2}', env.REGISTRY, env.IMAGE_NAME, needs.create-release.outputs.tag_name) }} | |
${{ ( !startsWith(github.ref, 'refs/tags/nightly') && format('{0}/{1}:{2}', env.REGISTRY, env.IMAGE_NAME, 'latest') ) || '' }} | |
build-args: | | |
GITHUB_REF | |
GITHUB_SHA | |
cache-from: type=gha | |
cache-to: type=gha | |
release-artifacts: | |
name: Release Artifacts | |
needs: | |
[create-release] | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
os: [linux, darwin, windows] | |
arch: [arm64, amd64] | |
exclude: | |
- os: windows | |
arch: arm64 | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/') | |
steps: | |
- uses: actions/download-artifact@v1 | |
with: | |
name: release-artifacts-${{ matrix.os }}-${{ matrix.arch }} | |
path: release-artifacts | |
- name: Upload Release Asset - ${{ matrix.os }}-${{ matrix.arch }} | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ needs.create-release.outputs.upload_url }} | |
asset_path: ./release-artifacts/kubent-${{ needs.create-release.outputs.tag_name }}-${{ matrix.os }}-${{ matrix.arch }}.tar.gz | |
asset_name: kubent-${{ needs.create-release.outputs.tag_name }}-${{ matrix.os }}-${{ matrix.arch }}.tar.gz | |
asset_content_type: application/tar+gzip |