Skip to content

Commit

Permalink
python workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Géry Casiez committed Dec 14, 2024
1 parent a1b86f7 commit 1a38d57
Showing 1 changed file with 7 additions and 12 deletions.
19 changes: 7 additions & 12 deletions .github/workflows/pythonBinding.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,9 @@ on:
branches: [ "master" ]

jobs:
jobLinux:
uses: ./.github/workflows/linux.yml

jobmacOS:
uses: ./.github/workflows/macOS.yml

jobWindows:
uses: ./.github/workflows/windows.yml

build:

runs-on: ubuntu-latest
needs: [jobLinux, jobmacOS, jobWindows]
container: ubuntu:latest

steps:
Expand All @@ -35,8 +25,13 @@ jobs:
python3.12 -m pip install --upgrade pip
python3.12 -m pip install setuptools cython
- name: Download all workflow run artifacts
uses: actions/download-artifact@v4
- name: Download Linux artifact
id: download-artifact
uses: dawidd6/action-download-artifact@v7
with:
workflow: linux.yml
workflow_conclusion: success
if_no_artifact_found: fail

- name: compile Python binding
run: |
Expand Down

0 comments on commit 1a38d57

Please sign in to comment.