Skip to content

Commit

Permalink
Fixed matrix job
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitriy-b committed Oct 9, 2024
1 parent 53ed512 commit 4f14eae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/dashboard_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
- name: Run tests
continue-on-error: true
run: |
HIVE_TTD_ENABLED=false ./hive --sim "${{ matrix.simulator }}" --sim.limit="${{ matrix.suite }}" --client "${{ matrix.client }}" --results-root=${{ github.workspace }}/runs --loglevel=5 --sim.loglevel=5 --client.checktimelimit=10m --docker.output --sim.parallelism=${{ matrix.parallelism }}
HIVE_TTD_ENABLED=false ./hive --sim "${{ matrix.simulator }}" --sim.limit="${{ matrix.suite }}" --client "${{ matrix.client }}" --results-root=${{ github.workspace }}/runs/${{ github.run_id }} --loglevel=5 --sim.loglevel=5 --client.checktimelimit=10m --docker.output --sim.parallelism=${{ matrix.parallelism }}
- name: Send file over SSH
if: always()
Expand All @@ -103,5 +103,5 @@ jobs:
username: ${{ secrets.SSH_USERNAME }}
key: ${{ secrets.SSH_KEY }}
port: ${{ secrets.SSH_PORT }}
source: ${{ github.workspace }}/runs/*
source: ${{ github.workspace }}/runs/${{ github.run_id }}/*
target: ${{ secrets.DIR }}/

0 comments on commit 4f14eae

Please sign in to comment.