feat: add endpoints for pprof #86
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' | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository }} | |
jobs: | |
audit: | |
name: Audit | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Remove non-semver tags (from helmchart) for goreleaser to work properly | |
run: | | |
git tag -d $(git tag -l | grep -v "^v[0-9]*.[0-9]*.[0-9]*") | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20' | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Audit | |
run: | | |
go mod download | |
make audit | |
- name: Check Sonar Token | |
id: check-sonar | |
shell: bash | |
run: | | |
if [ "${{ secrets.SONAR_TOKEN }}" != '' ]; then | |
echo "available=true" >> $GITHUB_OUTPUT; | |
else | |
echo "available=false" >> $GITHUB_OUTPUT; | |
fi | |
- name: SonarCloud Scan | |
if: ${{ steps.check-sonar.outputs.available == 'true' }} | |
uses: SonarSource/sonarcloud-github-action@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
build-images: | |
name: Build Docker Images | |
needs: | |
- audit | |
runs-on: ubuntu-latest | |
timeout-minutes: 60 | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Remove non-semver tags (from helmchart) for goreleaser to work properly | |
run: | | |
git tag -d $(git tag -l | grep -v "^v[0-9]*.[0-9]*.[0-9]*") | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Log in to the container registry | |
if: github.event_name != 'pull_request' | |
uses: docker/login-action@v2 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
- name: Build and push Docker image | |
uses: docker/build-push-action@v4 | |
with: | |
context: ./ | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
platforms: linux/amd64,linux/arm64 | |
build-args: | | |
BUILD_SNAPSHOT=${{ !startsWith(github.ref, 'refs/tags/') }} | |
NAME=${{ github.repository }} | |
VERSION=${{ steps.meta.outputs.version }} | |
REVISION=${{ github.sha }} | |
test-helm-charts: | |
name: "Test Helm Charts" | |
runs-on: ubuntu-latest | |
needs: | |
- audit | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Helm | |
uses: azure/setup-helm@v3 | |
with: | |
version: v3.12.2 | |
- name: Add dependency chart repos | |
run: | | |
helm repo add steadybit https://steadybit.github.io/helm-charts | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Add unit testing plugin | |
run: | | |
helm plugin install https://github.com/helm-unittest/helm-unittest.git | |
- name: Run unit tests | |
run: make charttesting | |
- name: Set up chart-testing | |
uses: helm/chart-testing-action@v2.4.0 | |
- name: Run chart-testing (lint) | |
run: ct lint --config chartTesting.yaml | |
release-helm-chart: | |
name: "Release Helm Chart" | |
runs-on: ubuntu-latest | |
needs: | |
- test-helm-charts | |
if: github.ref == 'refs/heads/main' | |
permissions: | |
contents: write | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Configure Git | |
run: | | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "$GITHUB_ACTOR@users.noreply.github.com" | |
- name: Set up Helm | |
uses: azure/setup-helm@v3 | |
with: | |
version: v3.12.2 | |
- name: Add dependency chart repos | |
run: | | |
helm repo add steadybit https://steadybit.github.io/helm-charts | |
- name: Run chart-releaser | |
uses: helm/chart-releaser-action@v1.5.0 | |
with: | |
charts_dir: charts | |
env: | |
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}" |