Skip to content

Commit

Permalink
Trying to fix issue with SSH artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitriy-b committed Oct 9, 2024
1 parent 5838067 commit 33daf4c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dashboard_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ 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/${{ github.run_id }} --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 }}/${{ github.run_id }}/runs --loglevel=5 --sim.loglevel=5 --client.checktimelimit=10m --docker.output --sim.parallelism=${{ matrix.parallelism }}
- name: Check report
run: ls -la ${{ github.workspace }}/runs/${{ github.run_id }}
run: ls -la ${{ github.workspace }}/${{ github.run_id }}/runs

- name: Send file over SSH
if: always()
Expand All @@ -106,5 +106,5 @@ jobs:
username: ${{ secrets.SSH_USERNAME }}
key: ${{ secrets.SSH_KEY }}
port: ${{ secrets.SSH_PORT }}
source: ${{ github.workspace }}/runs/${{ github.run_id }}/*
source: ${{ github.workspace }}/${{ github.run_id }}/runs/*
target: ${{ secrets.DIR }}/

0 comments on commit 33daf4c

Please sign in to comment.