Skip to content

Commit

Permalink
Merge branch 'main' into idg
Browse files Browse the repository at this point in the history
  • Loading branch information
mpluess committed Mar 27, 2024
2 parents b5af372 + 8ff7df2 commit 68697e9
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/build_idg.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: IDG

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:
IDG:
uses: ./.github/workflows/build_base.yml
with:
packageName: idg
packageVersion: $IDG_VERSION
packageVersionName: IDG_VERSION
label: ${{ inputs.label }}
dev: ${{ inputs.dev }}
buildNumber: ${{ inputs.buildNumber }}
useCuda: true
isNative: true
secrets: inherit

0 comments on commit 68697e9

Please sign in to comment.