Skip to content

Build and upload wheels for QE (disable-optimizations=false) #87

Build and upload wheels for QE (disable-optimizations=false)

Build and upload wheels for QE (disable-optimizations=false) #87

name: Build and upload wheels for QE
run-name: Build and upload wheels for QE (disable-optimizations=${{ github.event_name == 'workflow_dispatch' && inputs.disable-optimizations || false }})
on:
push:
branches-ignore:
- dev*
- stage*
- master*
workflow_dispatch:
inputs:
disable-optimizations:
description: 'Build unoptimized wheels?'
default: false
type: boolean
required: true
jobs:
build-artifacts:
strategy:
matrix:
platform-tag: [
"manylinux_x86_64",
"manylinux_aarch64"
]
uses: ./.github/workflows/cibuildwheel.yml

Check failure on line 26 in .github/workflows/build-and-upload-wheels-for-qe.yml

View workflow run for this annotation

GitHub Actions / Build and upload wheels for QE

Invalid workflow file

The workflow is not valid. .github/workflows/build-and-upload-wheels-for-qe.yml (Line: 26, Col: 11): Input runner-os is required, but not provided while calling. .github/workflows/build-and-upload-wheels-for-qe.yml (Line: 29, Col: 11): Invalid input, os is not defined in the referenced workflow.
with:
platform-tag: ${{ matrix.platform-tag }}
os: ubuntu-22.04
unoptimized: ${{ github.event_name == 'workflow_dispatch' && inputs.disable-optimizations || false }}
ref: ${{ github.sha }}
upload-to-jfrog:
needs: build-artifacts
uses: ./.github/workflows/upload-to-jfrog.yml
with:
jfrog-repo-name: ${{ vars.JFROG_GENERIC_REPO_NAME }}
secrets: inherit