From a81b4a7dbbd5678b281fcad98fd370591511df98 Mon Sep 17 00:00:00 2001 From: Thomas Krijnen Date: Mon, 24 Feb 2025 10:30:49 +0100 Subject: [PATCH] Create build_all.yml --- .github/workflows/build_all.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/build_all.yml diff --git a/.github/workflows/build_all.yml b/.github/workflows/build_all.yml new file mode 100644 index 0000000000..57a4d8f707 --- /dev/null +++ b/.github/workflows/build_all.yml @@ -0,0 +1,21 @@ +name: Dispatch Build IfcOpenShell + +on: + workflow_dispatch: + +jobs: + trigger-workflows: + runs-on: ubuntu-latest + strategy: + matrix: + workflow: + - 'Build IfcOpenShell Linux' + - 'Build IfcOpenShell Linux ARM' + - 'Build IfcOpenShell OSX' + - 'Build IfcOpenShell WASM / Pyodide' + - 'Build IfcOpenShell Windows' + steps: + - name: Trigger binary build workflows + uses: benc-uk/workflow-dispatch@v1 + with: + workflow: ${{ matrix.workflow }}