-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ci: add logql-analyzer CI #14495
Merged
Merged
ci: add logql-analyzer CI #14495
Changes from all commits
Commits
Show all changes
7 commits
Select commit
Hold shift + click to select a range
12eb027
ci: add logql-analyzer CI
trevorwhitney f69ac7d
ci: add workflow_dispatch trigger
trevorwhitney 351eda9
fix: spacing
trevorwhitney 5e65bab
ci: fix variables
trevorwhitney d0466ed
ci: remove pull request trigger
trevorwhitney c86dfc0
ci: move prepare step up
trevorwhitney c9fab8d
ci: use correct release version in docker build
trevorwhitney File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,109 @@ | ||
name: LogQL Analyzer | ||
|
||
on: | ||
workflow_dispatch: | ||
release: | ||
types: | ||
- released | ||
|
||
permissions: | ||
contents: read | ||
id-token: write | ||
|
||
jobs: | ||
analyze: | ||
runs-on: ubuntu-latest | ||
|
||
env: | ||
BUILD_TIMEOUT: 60 | ||
IMAGE_PREFIX: "grafana" | ||
RELEASE_VERSION: "${{ github.event.release.tag_name || 'test' }}" | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-tags: true | ||
|
||
- name: Run shell command | ||
id: prepare | ||
env: | ||
MAJOR_MINOR_VERSION_REGEXP: '([0-9]+\\.[0-9]+)' | ||
RELEASE_TAG_REGEXP: '^([0-9]+\\.[0-9]+\\.[0-9]+)$' | ||
run: | | ||
echo $("${WORKSPACE_ROOT}/loki/tools/image-tag") > .tag | ||
if [[ "${RELEASE_VERSION}" == "test" ]]; then | ||
echo "RELEASE_VERSION is not set, using image tag" | ||
RELEASE_VERSION=$(cat .tag) | ||
fi | ||
|
||
# if the tag matches the pattern `D.D.D` then RELEASE_NAME="D-D-x", otherwise RELEASE_NAME="next" | ||
RELEASE_NAME=$([[ $RELEASE_VERSION =~ $RELEASE_TAG_REGEXP ]] && echo $RELEASE_TAG | grep -oE $MAJOR_MINOR_VERSION_REGEXP | sed "s/\\./-/g" | sed "s/$/-x/" || echo "next") | ||
echo "RELEASE_NAME: $RELEASE_NAME" | ||
|
||
echo "::set-output name=release_version::${RELEASE_VERSION}" | ||
echo "::set-output name=release_name::${RELEASE_NAME}" | ||
|
||
- id: "get-github-app-token" | ||
name: "get github app token" | ||
uses: "actions/create-github-app-token@v1" | ||
with: | ||
app-id: "${{ secrets.APP_ID }}" | ||
owner: "${{ github.repository_owner }}" | ||
private-key: "${{ secrets.APP_PRIVATE_KEY }}" | ||
|
||
- name: "Set up QEMU" | ||
uses: "docker/setup-qemu-action@v3" | ||
- name: "set up docker buildx" | ||
uses: "docker/setup-buildx-action@v3" | ||
- name: "Login to DockerHub (from vault)" | ||
uses: "grafana/shared-workflows/actions/dockerhub-login@main" | ||
|
||
- name: "Build and push" | ||
timeout-minutes: "${{ fromJSON(env.BUILD_TIMEOUT) }}" | ||
uses: "docker/build-push-action@v6" | ||
with: | ||
build-args: "IMAGE_TAG=${{ steps.prepare.outputs.release_version }}" | ||
file: "cmd/logql-analyzer/Dockerfile" | ||
platforms: "linux/amd64" | ||
push: true | ||
tags: "grafana/logql-analyzer:${{ steps.prepare.outputs.release_version }}" | ||
|
||
- name: Log in to Google Artifact Registry | ||
uses: grafana/shared-workflows/actions/login-to-gar@main | ||
with: | ||
environment: "prod" | ||
|
||
- name: Update to latest image | ||
env: | ||
GITHUB_TOKEN: ${{ steps.get-github-app-token.outputs.token }} | ||
RELEASE_NAME: ${{ steps.prepare.outputs.release_name }} | ||
RELEASE_VERSION: ${{ steps.prepare.outputs.release_version }} | ||
run: | | ||
set -e -o pipefail | ||
|
||
cat << EOF > config.json | ||
{ | ||
"repo_name": "deployment_tools", | ||
"destination_branch": "master", | ||
"git_author_email": "119986603+updater-for-ci[bot]@users.noreply.github.com", | ||
"git_author_name": "version_bumper[bot]", | ||
"git_committer_email": "119986603+updater-for-ci[bot]@users.noreply.github.com", | ||
"git_committer_name": "version_bumper[bot]", | ||
"pull_request_branch_prefix": "logql-analyzer/updater", | ||
"pull_request_enabled": true, | ||
"pull_request_existing_strategy": "replace", | ||
"pull_request_title_prefix": "[logql-analyzer updater] ", | ||
"pull_request_message": "Add logql-analyzer version to ${RELEASE_VERSION} to supported versions", | ||
"update_jsonnet_attribute_configs": [ | ||
{ | ||
"file_path": "ksonnet/environments/logql-analyzer/supported-versions.libsonnet", | ||
"jsonnet_key": "${RELEASE_NAME}", | ||
"jsonnet_value": "grafana/logql-analyzer:${RELEASE_VERSION}-amd64", | ||
"upsert": true | ||
} | ||
] | ||
} | ||
EOF | ||
|
||
docker run --rm \ | ||
-e GITHUB_TOKEN="$GITHUB_TOKEN" \ | ||
-e CONFIG_JSON="$(cat config.json)" us-docker.pkg.dev/grafanalabs-global/docker-deployment-tools-prod/updater |& tee updater-output.log |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
are ENV variables shared between the steps?
I see that
Run shell command
step exports it but I am not sure if they are available on this stepThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nope, good call, they either need to be echoed into
$GITHUB_ENV
or set using the::set-output
syntax, which I opted for