From ecf0acaadbd8369d5423d0da6b5acf544e92338e Mon Sep 17 00:00:00 2001 From: Andreas Stefl Date: Sat, 28 Dec 2024 11:08:54 +0100 Subject: [PATCH] cleanup --- .github/workflows/build_all.yml | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/.github/workflows/build_all.yml b/.github/workflows/build_all.yml index 21445d4..9d40abc 100644 --- a/.github/workflows/build_all.yml +++ b/.github/workflows/build_all.yml @@ -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 @@ -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