Skip to content

Commit

Permalink
Merge branch 'main' into fftw3f
Browse files Browse the repository at this point in the history
  • Loading branch information
mpluess committed Mar 26, 2024
2 parents 49c46c6 + dc6de16 commit b9f9f5f
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/build_fftw3f.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: FFTW3F

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

0 comments on commit b9f9f5f

Please sign in to comment.