File tree Expand file tree Collapse file tree
easystacks/software.eessi.io/2023.06 Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2424 with :
2525 python-version : ' 3.9'
2626
27- - name : Check if an EasyStack has been modified
28- id : diff
27+ - name : If an EasyStack has been modified, create a mini EasyStack file to parse
2928 run : |
3029 git fetch origin ${{ github.base_ref }}
31- echo "🔍 Files changed between PR and base branch:"
32- git diff --name-only origin/${{ github.base_ref }} HEAD | grep ".yml"
30+ FILES=$(git diff --name-only origin/${{ github.base_ref }} HEAD | grep "eessi-*.yml" )
31+ echo "Easystacks between PR and base branch:"
32+ echo $FILES
33+ for FILE in "${FILES[@]}"; do
34+ echo "Diff for $FILE:"
35+ git diff origin/${{ github.base_ref }} HEAD -- "$FILE" >> new.${FILE}
36+ done
37+
38+ - name : Parse this EasyStack
39+ run : |
40+ cat new.*
41+
Original file line number Diff line number Diff line change @@ -45,3 +45,7 @@ easyconfigs:
4545 options :
4646 # see https://github.com/easybuilders/easybuild-easyconfigs/pull/22469
4747 from-commit : fc22841fef99cbb2a221c18029b15e692e78c27c
48+ - Scalasca-2.6.1-gompi-2023b.eb :
49+ options :
50+ # see https://github.com/easybuilders/easybuild-easyconfigs/pull/21135
51+ from-commit : 42baaa17c667c5ebde39eca004cc2c8ffb7050a1
You can’t perform that action at this time.
0 commit comments