Skip to content

Commit

Permalink
Enforce running all jobs, fix run url
Browse files Browse the repository at this point in the history
  • Loading branch information
zaelgohary committed Aug 8, 2024
1 parent c4ed7f1 commit aa60644
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/grid_client_nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,16 +88,19 @@ jobs:
yarn run ts-node --project packages/grid_client/tsconfig-node.json packages/grid_client/scripts/zdb.ts
- name: Cleanup - Delete all contracts
if: always()
id: delete_all
run: |
yarn run ts-node --project packages/grid_client/tsconfig-node.json packages/grid_client/scripts/delete_all_contracts.ts
- name: Run check up - List all contracts
if: always()
run: |
sleep 15
yarn run ts-node --project packages/grid_client/tsconfig-node.json packages/grid_client/scripts/list_all_contracts.ts > output.txt
- name: Check if contracts are Empty
if: always()
run: |
# print the file content
cat output.txt
Expand All @@ -110,6 +113,7 @@ jobs:
fi
- name: Test Results
if: always()
run: |
echo Dynamic Single Vm: ${{ steps.single_vm.outcome }}
echo Multiple Vm: ${{ steps.multiple_vm.outcome }}
Expand All @@ -133,6 +137,7 @@ jobs:
run: exit 1

- name: Find issues
if: always()
id: find-issues
env:
GH_TOKEN: ${{ github.token }}
Expand All @@ -153,7 +158,7 @@ jobs:
## Failure Report
> [!IMPORTANT]
> **Details on failed run**: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}/job/${{github.job}}
> **Details on failed run**: https://github.com/threefoldtech/${{ github.repository }}/actions/runs/${{ github.run_id }}
- **Dynamic Single Vm**: ${{ steps.single_vm.outcome }}
- **Multiple Vm**: ${{ steps.multiple_vm.outcome }}
Expand Down

0 comments on commit aa60644

Please sign in to comment.