Skip to content
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
e3ab901
Using find_path() and find_library() to find readline package.
sanbee Jun 8, 2025
ff1a5a1
Typo fix + more logic to determine when to set GNUREADLINE=OFF
sanbee Jun 8, 2025
0719660
More fixes in the logic to make it portable across different installa…
sanbee Jun 8, 2025
eaae40d
Send message from READLINE discovery code as STATUS
sanbee Jun 8, 2025
1662b78
Added some explanatory comments.
sanbee Jun 8, 2025
8ba04fc
Working version, but not sure if all is well yet.
sanbee Jun 9, 2025
7ba17dd
Made a warning message more interesting :-)
sanbee Jun 9, 2025
51a0594
The logic for finding readline package is triggered only for GNUREADL…
sanbw Jun 9, 2025
b6180c6
Merge branch 'master' into cmake_fix
sanbw Jun 9, 2025
a3d8327
Using pkg_check_modules() first to fine GNUREADLINE.
sanbee Jun 10, 2025
6e60dc8
Merge branch 'cmake_fix' of github.com:sanbee/parafeed into cmake_fix
sanbee Jun 10, 2025
17fde65
Santized code and messages.
sanbee Jun 10, 2025
e2b8566
Reverted to use of find_package() for finding Readline package.
Jun 11, 2025
03ddf76
Adding the LICENSE file.
sanbw Jun 12, 2025
3c72604
Merge branch 'master' into cmake_fix
sanbw Jun 12, 2025
9897867
Update package.py
sanbee Jun 14, 2025
70e0851
Update README.md
sanbee Jun 14, 2025
370c901
Updating the package.py for 1.1.43
preshanth Jun 16, 2025
9c826fd
Fixing badge link in README.md
preshanth Jun 16, 2025
25cd155
Updating the CI to detect changes. Using https://github.com/dorny/pat…
preshanth Jun 16, 2025
5d5be36
Deleting typo in path name
preshanth Jun 16, 2025
beb0653
Update parafeed_CI.yaml
preshanth Jun 16, 2025
2085913
Merging master
preshanth Jun 16, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 7 additions & 6 deletions .github/workflows/parafeed_CI.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,14 @@ jobs:

- uses: dorny/paths-filter@v3
id: spack_changes
with:
filters: |
changed:
- 'spack_packages/**'
with:
filters: |
changed:
- 'spack_package/**'

- name: Cache Spack clone
if: steps.spack_changes.outputs.changed == 'true'
id: cache-spack
uses: actions/cache@v4
with:
path: spack
Expand All @@ -70,8 +71,8 @@ jobs:
- name: Create and activate and install Spack environment
if: steps.spack_changes.outputs.changed == 'true'
run: |
./spack/bin/spack env create parafeed-env
. ./spack/share/spack/setup-env.sh
spack env create parafeed-env
spack env activate parafeed-env
spack add parafeed
spack concretize
Expand Down