core: metrics: Provide capabilities for returning the count of hot reloaded in REST API and its metrics #4052
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: 'Pull requests compile checks' | |
on: | |
pull_request: | |
# Only trigger if there is a code change or a CMake change that (could) affect code | |
paths: | |
- '**.c' | |
- '**.h' | |
- 'CMakeLists.txt' | |
- 'cmake/*' | |
workflow_dispatch: | |
jobs: | |
# Sanity check for compilation using older compiler on CentOS 7 | |
pr-compile-centos-7: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout Fluent Bit code | |
uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: Attempt to build current source for CentOS 7 | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
file: ./dockerfiles/Dockerfile.centos7 | |
# No need to use after this so discard completely | |
push: false | |
load: false | |
provenance: false |