Skip to content

Commit

Permalink
Added wsclean build workflow yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
mpluess committed Mar 28, 2024
1 parent 001b528 commit 7ddb4a3
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/build_wsclean.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: WSClean

on:
workflow_dispatch:
inputs:
label:
type: string
default: "main"
required: true
dev:
type: boolean
required: false
default: false
buildNumber:
type: string
required: true

workflow_call:
inputs:
label:
type: string
required: true
dev:
type: boolean
required: false
default: false
buildNumber:
type: string
required: true

jobs:
WSClean:
uses: ./.github/workflows/build_base.yml
with:
packageName: wsclean
packageVersion: $WSCLEAN_VERSION
packageVersionName: WSCLEAN_VERSION
label: ${{ inputs.label }}
dev: ${{ inputs.dev }}
buildNumber: ${{ inputs.buildNumber }}
useCuda: false
isNative: true
secrets: inherit

0 comments on commit 7ddb4a3

Please sign in to comment.