diff --git a/.github/workflows/full-regression.yml b/.github/workflows/full-regression.yml index 5e11fbbdd4..1dcccfcdcc 100644 --- a/.github/workflows/full-regression.yml +++ b/.github/workflows/full-regression.yml @@ -81,8 +81,6 @@ jobs: # restrict to official LAMMPS repository if: ${{ github.repository == 'lammps/lammps' }} runs-on: ubuntu-latest - env: - CCACHE_DIR: ${{ github.workspace }}/.ccache strategy: max-parallel: 2 matrix: diff --git a/tools/regression-tests/get-quick-list.py b/tools/regression-tests/get-quick-list.py index 672aa10f3a..9af91b139c 100644 --- a/tools/regression-tests/get-quick-list.py +++ b/tools/regression-tests/get-quick-list.py @@ -264,7 +264,7 @@ if __name__ == "__main__": with open('input_list.txt', 'w') as f: for inp in inputs: print(inp) - f.write(inp + '\n') + f.write(str(inp) + '\n') print("Found changes to the following styles:") print("Commands: ", styles['command'])