Skip to content

Commit

Permalink
Adjust workflows to apply patches and pushed patched version as well …
Browse files Browse the repository at this point in the history
…for introspection
  • Loading branch information
yarikoptic committed Apr 26, 2024
1 parent dd17442 commit 03e33bc
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/schemacode_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,9 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: "Apply patches for BIDS-2.0"
run: tools/bids-2.0/apply_all

- name: "Set up Python"
uses: actions/setup-python@v5
with:
Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/validate_bids-examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,25 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: "Apply patches for BIDS-2.0"
run: |
set -o pipefail
tools/bids-2.0/apply_all 2>&1 | tee /tmp/patch.log
- name: "Push patched version online for possible introspection"
# if: contains(github.ref, 'refs/heads/bids-2.0')
run: |
set -x
commit=$(git rev-parse HEAD)
branch=$(git rev-parse --abbrev-ref HEAD)-patched
git checkout -b "$branch"
git add .
{
echo -e "Applied patches for BIDS-2.0 to $commit\n";
cat /tmp/patch.log";
} | git commit -F -
git push -f origin "$branch"
# Setup Python with bst
- uses: actions/setup-python@v5
with:
Expand Down

0 comments on commit 03e33bc

Please sign in to comment.