Skip to content

Commit

Permalink
Continue executing CI when test connection fails
Browse files Browse the repository at this point in the history
Signed-off-by: Julio Faracco <jcfaracco@gmail.com>
  • Loading branch information
jcfaracco committed Jun 28, 2024
1 parent ce888c8 commit 2ca7a47
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,12 @@ jobs:
id: test_connection
run: |
ssh -T ${{ secrets.CLUSTER_USER }}@${{ secrets.CLUSTER_ADDRESS }} -p 8686 > /dev/null
continue-on-error: true
- name: Pull latest docker image
if: success() || steps.test_connection.conclusion == 'success'
if: success() && steps.test_connection.outcome == 'success'
run: |
ssh ${{ secrets.CLUSTER_USER }}@${{ secrets.CLUSTER_ADDRESS }} -p 8686 "ssh ${{ secrets.CLUSTER_GPU_ID }} \"docker pull jcfaracco/dasf:gpu\""
- name: Run test cases remotely
if: success() || steps.test_connection.conclusion == 'success'
if: success() && steps.test_connection.outcome == 'success'
run: |
ssh ${{ secrets.CLUSTER_USER }}@${{ secrets.CLUSTER_ADDRESS }} -p 8686 "ssh ${{ secrets.CLUSTER_GPU_ID }} \"docker run --rm --gpus all jcfaracco/dasf:gpu sh -c 'pip3 install pytest parameterized pytest-cov pip --upgrade && rm -rf dasf-core && git clone https://github.com/discovery-unicamp/dasf-core.git && cd dasf-core/ && pip3 uninstall dasf -y && pip3 install . && pytest --cov dasf/ tests/ && cd -'\""

0 comments on commit 2ca7a47

Please sign in to comment.