Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
andiwand committed Dec 28, 2024
1 parent d72041f commit ecf0aca
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions .github/workflows/build_all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,27 +8,15 @@ on:
- cron: '37 9 * * *'
workflow_dispatch:
inputs:
package_name:
description: Package name
type: string
default: default
package_version:
description: Package version. Specify 'newest' or leave empty to request the newest version. Specify 'all' to request all versions.
required: false
upload_to_artifactory:
description: Upload built packages to artifactory
type: boolean
default: false
build_dependents:
description: Parse conan dependency tree and build not just the requested package, but also all dependents of it
type: boolean
default: true
build_dependencies_from_source:
description: Build all dependencies from source (conan install --build=* instead of --build=missing)
type: boolean
default: false

run-name: build ${{ inputs.package_name }}
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
Expand Down Expand Up @@ -66,6 +54,7 @@ jobs:
GITHUB_EVENT: ${{ toJson(github.event) }}

build:
if: ${{ needs.generate-matrix.outputs.packages != '[]' && needs.generate-matrix.outputs.packages != '' }}
name: ${{ matrix.package.package_reference }}
needs:
- generate-matrix
Expand Down

0 comments on commit ecf0aca

Please sign in to comment.