Skip to content

Commit 5204e28

Browse files
author
Pat
authored
workflows: unstable ci updates (fluent#5494)
* workflows: disable 1.9 unstable build until branch is available Signed-off-by: Patrick Stephens <[email protected]> * workflows: use latest for Windows packaging scripts Signed-off-by: Patrick Stephens <[email protected]> * workflows: fix schema generation name Signed-off-by: Patrick Stephens <[email protected]>
1 parent 110bce8 commit 5204e28

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/call-build-images.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@ jobs:
319319
- name: Generate schema
320320
run: |
321321
docker run --rm -t ${{ inputs.registry }}/${{ inputs.image }}:${{ inputs.version }} -J > fluent-bit-schema-${{ inputs.version }}.json
322-
cat fluent-bit-schema.json | jq -M > fluent-bit-schema-pretty-${{ inputs.version }}.json
322+
cat fluent-bit-schema-${{ inputs.version }}.json | jq -M > fluent-bit-schema-pretty-${{ inputs.version }}.json
323323
shell: bash
324324

325325
- name: Upload the schema

.github/workflows/call-build-windows.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,8 @@ jobs:
9393
- name: Checkout repository
9494
uses: actions/checkout@v3
9595
with:
96-
ref: ${{ inputs.ref }}
96+
# Need latest for checksum packaging script
97+
ref: master
9798

9899
- name: Download all artefacts
99100
continue-on-error: true

.github/workflows/cron-unstable-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ on:
1313
# Run nightly build at this time, bit of trial and error but this seems good.
1414
schedule:
1515
- cron: "0 6 * * *" # master build
16-
- cron: "0 12 * * *" # 1.9 build
1716
# Not available currently so will fail until it is
17+
# - cron: "0 12 * * *" # 1.9 build
1818
- cron: "0 18 * * *" # 1.8 build
1919
# A 1.8 build requires merging all the changes from master to handle packaging from local
2020

0 commit comments

Comments
 (0)