do not fetch specific commit hash
This commit is contained in:
4
.github/workflows/quick-regression.yml
vendored
4
.github/workflows/quick-regression.yml
vendored
@ -24,7 +24,6 @@ jobs:
|
|||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
ref: ${{ github.event.pull_request.head.sha }}
|
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
show-progress: false
|
show-progress: false
|
||||||
|
|
||||||
@ -69,4 +68,7 @@ jobs:
|
|||||||
- name: Run Selected Regression Tests
|
- name: Run Selected Regression Tests
|
||||||
shell: bash
|
shell: bash
|
||||||
run: |
|
run: |
|
||||||
|
git branch
|
||||||
|
git branch -r
|
||||||
|
git diff origin/develop..HEAD
|
||||||
python3 tools/regression-tests/get-quick-list.py
|
python3 tools/regression-tests/get-quick-list.py
|
||||||
|
|||||||
@ -258,10 +258,9 @@ if __name__ == "__main__":
|
|||||||
regex = make_regex(styles)
|
regex = make_regex(styles)
|
||||||
if regex:
|
if regex:
|
||||||
inputs = get_examples_using_styles(regex, os.path.join(LAMMPS_DIR,'examples'))
|
inputs = get_examples_using_styles(regex, os.path.join(LAMMPS_DIR,'examples'))
|
||||||
|
print("Suggested inputs for testing:")
|
||||||
print("Suggested inputs for testing:")
|
for inp in inputs:
|
||||||
for inp in inputs:
|
print(inp)
|
||||||
print(inp)
|
|
||||||
|
|
||||||
print(type(make_regex(styles)))
|
print(type(make_regex(styles)))
|
||||||
print("Found changes to the following styles:")
|
print("Found changes to the following styles:")
|
||||||
|
|||||||
Reference in New Issue
Block a user