Skip to content

Commit

Permalink
workflows: unstable ci updates (#5494)
Browse files Browse the repository at this point in the history
* 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]>
  • Loading branch information
patrick-stephens authored May 25, 2022
1 parent 110bce8 commit 5204e28
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/call-build-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ jobs:
- name: Generate schema
run: |
docker run --rm -t ${{ inputs.registry }}/${{ inputs.image }}:${{ inputs.version }} -J > fluent-bit-schema-${{ inputs.version }}.json
cat fluent-bit-schema.json | jq -M > fluent-bit-schema-pretty-${{ inputs.version }}.json
cat fluent-bit-schema-${{ inputs.version }}.json | jq -M > fluent-bit-schema-pretty-${{ inputs.version }}.json
shell: bash

- name: Upload the schema
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/call-build-windows.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,8 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3
with:
ref: ${{ inputs.ref }}
# Need latest for checksum packaging script
ref: master

- name: Download all artefacts
continue-on-error: true
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cron-unstable-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ on:
# Run nightly build at this time, bit of trial and error but this seems good.
schedule:
- cron: "0 6 * * *" # master build
- cron: "0 12 * * *" # 1.9 build
# Not available currently so will fail until it is
# - cron: "0 12 * * *" # 1.9 build
- cron: "0 18 * * *" # 1.8 build
# A 1.8 build requires merging all the changes from master to handle packaging from local

Expand Down

0 comments on commit 5204e28

Please sign in to comment.