diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 12:08:03 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-05 12:08:18 +0000 |
commit | 5da14042f70711ea5cf66e034699730335462f66 (patch) | |
tree | 0f6354ccac934ed87a2d555f45be4c831cf92f4a /src/fluent-bit/.github/workflows/pr-windows-build.yaml | |
parent | Releasing debian version 1.44.3-2. (diff) | |
download | netdata-5da14042f70711ea5cf66e034699730335462f66.tar.xz netdata-5da14042f70711ea5cf66e034699730335462f66.zip |
Merging upstream version 1.45.3+dfsg.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/fluent-bit/.github/workflows/pr-windows-build.yaml')
-rw-r--r-- | src/fluent-bit/.github/workflows/pr-windows-build.yaml | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/fluent-bit/.github/workflows/pr-windows-build.yaml b/src/fluent-bit/.github/workflows/pr-windows-build.yaml new file mode 100644 index 000000000..2831122fe --- /dev/null +++ b/src/fluent-bit/.github/workflows/pr-windows-build.yaml @@ -0,0 +1,27 @@ +name: PR - Windows checks +on: + workflow_dispatch: + + pull_request: + # Limit to just those changes that 'might' affect Windows for automated builds + # We can always do a manual build for a branch + paths: + - '**.h' + - '**.c' + - '**.windows' + - './conf/**' + - './cmake/**' + types: + - opened + - reopened + - synchronize + +jobs: + pr-windows-build: + uses: ./.github/workflows/call-build-windows.yaml + with: + version: ${{ github.sha }} + ref: ${{ github.sha }} + environment: pr + secrets: + token: ${{ secrets.GITHUB_TOKEN }} |