Skip to content

Commit

Permalink
Add option to build and upload unoptimized wheels
Browse files Browse the repository at this point in the history
  • Loading branch information
juliannguyen4 committed May 20, 2024
1 parent 3ec08f5 commit 619fbee
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/build-and-upload-wheels-for-qe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,19 @@ on:
- dev*
- stage*
- master*
workflow_dispatch:
inputs:
disable-optimizations:
description: 'Build unoptimized wheels?'
default: false
type: boolean
required: true

jobs:
build-artifacts:
uses: ./.github/workflows/build-wheels.yml
with:
apply-no-optimizations: ${{ inputs.disable-optimizations }}

upload-to-jfrog:
needs: build-artifacts
Expand Down

0 comments on commit 619fbee

Please sign in to comment.