Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions .github/workflows/build_airflow.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ run-name: |

on:
workflow_dispatch:
inputs:
skip-publish:
description: Skip publishing and signing images
type: boolean
required: true
default: false
schedule:
- cron: 0 0 1/2 * * # https://crontab.guru/#0_0_1/2_*_*
push:
Expand Down Expand Up @@ -39,3 +45,5 @@ jobs:
product-name: airflow
sdp-version: ${{ github.ref_type == 'tag' && github.ref_name || '0.0.0-dev' }}
registry-namespace: sdp
# Default to true if not set/empty (if not triggered by workflow_dispatch)
publish: ${{ !inputs.skip-publish }}
8 changes: 8 additions & 0 deletions .github/workflows/build_druid.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ run-name: |

on:
workflow_dispatch:
inputs:
skip-publish:
description: Skip publishing and signing images
type: boolean
required: true
default: false
schedule:
- cron: 0 1 1/2 * * # https://crontab.guru/#0_1_1/2_*_*
push:
Expand Down Expand Up @@ -41,3 +47,5 @@ jobs:
product-name: druid
sdp-version: ${{ github.ref_type == 'tag' && github.ref_name || '0.0.0-dev' }}
registry-namespace: sdp
# Default to true if not set/empty (if not triggered by workflow_dispatch)
publish: ${{ !inputs.skip-publish }}
8 changes: 8 additions & 0 deletions .github/workflows/build_hadoop.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ run-name: |

on:
workflow_dispatch:
inputs:
skip-publish:
description: Skip publishing and signing images
type: boolean
required: true
default: false
schedule:
- cron: 0 2 1/2 * * # https://crontab.guru/#0_2_1/2_*_*
push:
Expand Down Expand Up @@ -41,3 +47,5 @@ jobs:
product-name: hadoop
sdp-version: ${{ github.ref_type == 'tag' && github.ref_name || '0.0.0-dev' }}
registry-namespace: sdp
# Default to true if not set/empty (if not triggered by workflow_dispatch)
publish: ${{ !inputs.skip-publish }}
8 changes: 8 additions & 0 deletions .github/workflows/build_hbase.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ run-name: |

on:
workflow_dispatch:
inputs:
skip-publish:
description: Skip publishing and signing images
type: boolean
required: true
default: false
schedule:
- cron: 0 0 2/2 * * # https://crontab.guru/#0_0_2/2_*_*
push:
Expand Down Expand Up @@ -42,3 +48,5 @@ jobs:
product-name: hbase
sdp-version: ${{ github.ref_type == 'tag' && github.ref_name || '0.0.0-dev' }}
registry-namespace: sdp
# Default to true if not set/empty (if not triggered by workflow_dispatch)
publish: ${{ !inputs.skip-publish }}
8 changes: 8 additions & 0 deletions .github/workflows/build_hive.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ run-name: |

on:
workflow_dispatch:
inputs:
skip-publish:
description: Skip publishing and signing images
type: boolean
required: true
default: false
schedule:
- cron: 0 2 2/2 * * # https://crontab.guru/#0_2_2/2_*_*
push:
Expand Down Expand Up @@ -42,4 +48,6 @@ jobs:
product-name: hive
sdp-version: ${{ github.ref_type == 'tag' && github.ref_name || '0.0.0-dev' }}
registry-namespace: sdp
# Default to true if not set/empty (if not triggered by workflow_dispatch)
publish: ${{ !inputs.skip-publish }}
runners: ubicloud
8 changes: 8 additions & 0 deletions .github/workflows/build_java-base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ run-name: |

on:
workflow_dispatch:
inputs:
skip-publish:
description: Skip publishing and signing images
type: boolean
required: true
default: false
schedule:
- cron: 0 0 1/2 * * # https://crontab.guru/#0_0_1/2_*_*
push:
Expand Down Expand Up @@ -37,3 +43,5 @@ jobs:
product-name: java-base
sdp-version: ${{ github.ref_type == 'tag' && github.ref_name || '0.0.0-dev' }}
registry-namespace: sdp
# Default to true if not set/empty (if not triggered by workflow_dispatch)
publish: ${{ !inputs.skip-publish }}
8 changes: 8 additions & 0 deletions .github/workflows/build_java-devel.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ run-name: |

on:
workflow_dispatch:
inputs:
skip-publish:
description: Skip publishing and signing images
type: boolean
required: true
default: false
schedule:
- cron: 0 1 1/2 * * # https://crontab.guru/#0_1_1/2_*_*
push:
Expand Down Expand Up @@ -37,3 +43,5 @@ jobs:
product-name: java-devel
sdp-version: ${{ github.ref_type == 'tag' && github.ref_name || '0.0.0-dev' }}
registry-namespace: sdp
# Default to true if not set/empty (if not triggered by workflow_dispatch)
publish: ${{ !inputs.skip-publish }}
8 changes: 8 additions & 0 deletions .github/workflows/build_kafka-testing-tools.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ run-name: |

on:
workflow_dispatch:
inputs:
skip-publish:
description: Skip publishing and signing images
type: boolean
required: true
default: false
schedule:
- cron: 0 2 1/2 * * # https://crontab.guru/#0_2_1/2_*_*
push:
Expand Down Expand Up @@ -41,3 +47,5 @@ jobs:
product-name: kafka-testing-tools
sdp-version: ${{ github.ref_type == 'tag' && github.ref_name || '0.0.0-dev' }}
registry-namespace: sdp
# Default to true if not set/empty (if not triggered by workflow_dispatch)
publish: ${{ !inputs.skip-publish }}
8 changes: 8 additions & 0 deletions .github/workflows/build_kafka.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ run-name: |

on:
workflow_dispatch:
inputs:
skip-publish:
description: Skip publishing and signing images
type: boolean
required: true
default: false
schedule:
- cron: 0 0 2/2 * * # https://crontab.guru/#0_0_2/2_*_*
push:
Expand Down Expand Up @@ -42,3 +48,5 @@ jobs:
product-name: kafka
sdp-version: ${{ github.ref_type == 'tag' && github.ref_name || '0.0.0-dev' }}
registry-namespace: sdp
# Default to true if not set/empty (if not triggered by workflow_dispatch)
publish: ${{ !inputs.skip-publish }}
8 changes: 8 additions & 0 deletions .github/workflows/build_krb5.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ run-name: |

on:
workflow_dispatch:
inputs:
skip-publish:
description: Skip publishing and signing images
type: boolean
required: true
default: false
schedule:
- cron: 0 2 2/2 * * # https://crontab.guru/#0_2_2/2_*_*
push:
Expand Down Expand Up @@ -37,3 +43,5 @@ jobs:
product-name: krb5
sdp-version: ${{ github.ref_type == 'tag' && github.ref_name || '0.0.0-dev' }}
registry-namespace: sdp
# Default to true if not set/empty (if not triggered by workflow_dispatch)
publish: ${{ !inputs.skip-publish }}
8 changes: 8 additions & 0 deletions .github/workflows/build_nifi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ run-name: |

on:
workflow_dispatch:
inputs:
skip-publish:
description: Skip publishing and signing images
type: boolean
required: true
default: false
schedule:
- cron: 0 0 1/2 * * # https://crontab.guru/#0_0_1/2_*_*
push:
Expand Down Expand Up @@ -41,6 +47,8 @@ jobs:
product-name: nifi
sdp-version: ${{ github.ref_type == 'tag' && github.ref_name || '0.0.0-dev' }}
registry-namespace: sdp
# Default to true if not set/empty (if not triggered by workflow_dispatch)
publish: ${{ !inputs.skip-publish }}
# Since building Vector from source, this build runs out of disk space.
# As such, we use the Ubicloud runners which provide bigger disks.
runners: ubicloud
8 changes: 8 additions & 0 deletions .github/workflows/build_omid.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ run-name: |

on:
workflow_dispatch:
inputs:
skip-publish:
description: Skip publishing and signing images
type: boolean
required: true
default: false
schedule:
- cron: 0 1 1/2 * * # https://crontab.guru/#0_1_1/2_*_*
push:
Expand Down Expand Up @@ -41,3 +47,5 @@ jobs:
product-name: omid
sdp-version: ${{ github.ref_type == 'tag' && github.ref_name || '0.0.0-dev' }}
registry-namespace: sdp
# Default to true if not set/empty (if not triggered by workflow_dispatch)
publish: ${{ !inputs.skip-publish }}
8 changes: 8 additions & 0 deletions .github/workflows/build_opa.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ run-name: |

on:
workflow_dispatch:
inputs:
skip-publish:
description: Skip publishing and signing images
type: boolean
required: true
default: false
schedule:
- cron: 0 2 1/2 * * # https://crontab.guru/#0_2_1/2_*_*
push:
Expand Down Expand Up @@ -39,3 +45,5 @@ jobs:
product-name: opa
sdp-version: ${{ github.ref_type == 'tag' && github.ref_name || '0.0.0-dev' }}
registry-namespace: sdp
# Default to true if not set/empty (if not triggered by workflow_dispatch)
publish: ${{ !inputs.skip-publish }}
8 changes: 8 additions & 0 deletions .github/workflows/build_opensearch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ run-name: |

on:
workflow_dispatch:
inputs:
skip-publish:
description: Skip publishing and signing images
type: boolean
required: true
default: false
schedule:
- cron: 0 0 2/2 * * # https://crontab.guru/#0_0_2/2_*_*
push:
Expand Down Expand Up @@ -42,4 +48,6 @@ jobs:
product-name: opensearch
sdp-version: ${{ github.ref_type == 'tag' && github.ref_name || '0.0.0-dev' }}
registry-namespace: sdp
# Default to true if not set/empty (if not triggered by workflow_dispatch)
publish: ${{ !inputs.skip-publish }}
runners: ubicloud
8 changes: 8 additions & 0 deletions .github/workflows/build_opensearch_dashboards.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ run-name: |

on:
workflow_dispatch:
inputs:
skip-publish:
description: Skip publishing and signing images
type: boolean
required: true
default: false
schedule:
- cron: 0 0 2/2 * * # https://crontab.guru/#0_0_2/2_*_*
push:
Expand Down Expand Up @@ -40,4 +46,6 @@ jobs:
product-name: opensearch-dashboards
sdp-version: ${{ github.ref_type == 'tag' && github.ref_name || '0.0.0-dev' }}
registry-namespace: sdp
# Default to true if not set/empty (if not triggered by workflow_dispatch)
publish: ${{ !inputs.skip-publish }}
runners: ubicloud
8 changes: 8 additions & 0 deletions .github/workflows/build_spark-connect-client.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ run-name: |

on:
workflow_dispatch:
inputs:
skip-publish:
description: Skip publishing and signing images
type: boolean
required: true
default: false
schedule:
- cron: 0 0 2/2 * * # https://crontab.guru/#0_0_2/2_*_*
push:
Expand Down Expand Up @@ -42,4 +48,6 @@ jobs:
# Since building Vector from source, this build runs out of disk space.
# As such, we use the Ubicloud runners which provide bigger disks.
runners: ubicloud
# Default to true if not set/empty (if not triggered by workflow_dispatch)
publish: ${{ !inputs.skip-publish }}
publish-to-quay: false
8 changes: 8 additions & 0 deletions .github/workflows/build_spark-k8s.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ run-name: |

on:
workflow_dispatch:
inputs:
skip-publish:
description: Skip publishing and signing images
type: boolean
required: true
default: false
schedule:
- cron: 0 0 2/2 * * # https://crontab.guru/#0_0_2/2_*_*
push:
Expand Down Expand Up @@ -42,4 +48,6 @@ jobs:
product-name: spark-k8s
sdp-version: ${{ github.ref_type == 'tag' && github.ref_name || '0.0.0-dev' }}
registry-namespace: sdp
# Default to true if not set/empty (if not triggered by workflow_dispatch)
publish: ${{ !inputs.skip-publish }}
runners: ubicloud
8 changes: 8 additions & 0 deletions .github/workflows/build_stackable-base.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ run-name: |

on:
workflow_dispatch:
inputs:
skip-publish:
description: Skip publishing and signing images
type: boolean
required: true
default: false
schedule:
- cron: 0 1 2/2 * * # https://crontab.guru/#0_1_2/2_*_*
push:
Expand Down Expand Up @@ -38,3 +44,5 @@ jobs:
product-name: stackable-base
sdp-version: ${{ github.ref_type == 'tag' && github.ref_name || '0.0.0-dev' }}
registry-namespace: sdp
# Default to true if not set/empty (if not triggered by workflow_dispatch)
publish: ${{ !inputs.skip-publish }}
8 changes: 8 additions & 0 deletions .github/workflows/build_superset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ run-name: |

on:
workflow_dispatch:
inputs:
skip-publish:
description: Skip publishing and signing images
type: boolean
required: true
default: false
schedule:
- cron: 0 2 2/2 * * # https://crontab.guru/#0_2_2/2_*_*
push:
Expand Down Expand Up @@ -39,3 +45,5 @@ jobs:
product-name: superset
sdp-version: ${{ github.ref_type == 'tag' && github.ref_name || '0.0.0-dev' }}
registry-namespace: sdp
# Default to true if not set/empty (if not triggered by workflow_dispatch)
publish: ${{ !inputs.skip-publish }}
8 changes: 8 additions & 0 deletions .github/workflows/build_testing-tools.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ run-name: |

on:
workflow_dispatch:
inputs:
skip-publish:
description: Skip publishing and signing images
type: boolean
required: true
default: false
schedule:
- cron: 0 0 1/2 * * # https://crontab.guru/#0_0_1/2_*_*
push:
Expand Down Expand Up @@ -45,3 +51,5 @@ jobs:
product-name: ${{ matrix.product-name }}
sdp-version: ${{ github.ref_type == 'tag' && github.ref_name || '0.0.0-dev' }}
registry-namespace: sdp
# Default to true if not set/empty (if not triggered by workflow_dispatch)
publish: ${{ !inputs.skip-publish }}
Loading
Loading