Skip to content

Commit

Permalink
ci/cd: skip data validation until the runner is available
Browse files Browse the repository at this point in the history
  • Loading branch information
AhmetNSimsek committed Oct 17, 2024
1 parent ba4c5b1 commit 44e349d
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/update-datavalidation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,13 @@ on:

jobs:
restart-data-validation:
runs-on: siibra-data-validation
runs-on: ubuntu-latest
if: ${{ github.event.inputs.runner }} == "siibra-data-validation"
steps:
- run: |
/bin/bash -c "cd /softwares/software && ./restart.sh"
echo ""
# data validation will be enabled in the future when the runner is available.
# runs-on: siibra-data-validation
# steps:
# - run: |
# /bin/bash -c "cd /softwares/software && ./restart.sh"

0 comments on commit 44e349d

Please sign in to comment.