Skip to content

Commit

Permalink
sequential execution of jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
Aarsh2001 committed Aug 25, 2023
1 parent a1714c2 commit 92a98ca
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test_basics.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
echo "ToDo: add docker builds for different platforms/hardware targets"
run-tests:
needs: build
needs: platform
runs-on: ubuntu-latest #ToDo: ${{ needs.build.outputs.os }}
strategy:
matrix:
Expand All @@ -45,10 +45,10 @@ jobs:
docker run -v `pwd`:/ivy/demos unifyai/ivy:latest demos/tests/test_demos.sh ${{ secrets.USER_API_KEY }} ${{ matrix.modules }}.ipynb "basics"
results:
needs: tests
needs: run-tests
runs-on: ubuntu-latest #ToDo: ${{ needs.build.outputs.os }}
steps:
- name: Check on failures
if: needs.tests.outputs.outcome!= 'success'
if: needs.run-tests.outputs.outcome!= 'success'
run: exit 1

0 comments on commit 92a98ca

Please sign in to comment.