Skip to content
Merged
Changes from all commits
Commits
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
24 changes: 16 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
uses: actions/cache@v4
with:
path: formlib
key: formlib-${{ matrix.test }}
key: formlib-${{ matrix.test }}-v1

- name: Install library if necessary
if: steps.cache-formlib.outputs.cache-hit != 'true'
Expand All @@ -86,7 +86,9 @@ jobs:
mv forcer-1.0.0/forcer formlib
rm -rf forcer-1.0.0
# color library for the color test in extra
wget https://www.nikhef.nl/~form/maindir/packages/color/color.h -P formlib
wget https://github.com/form-dev/form-packages/archive/refs/tags/v1.0.0.tar.gz -O - | tar -x --gzip
mv form-packages-1.0.0/color/color.h formlib
rm -rf form-packages-1.0.0
;;
esac

Expand Down Expand Up @@ -148,7 +150,7 @@ jobs:
uses: actions/cache@v4
with:
path: formlib
key: formlib-${{ matrix.test }}
key: formlib-${{ matrix.test }}-v1

- name: Install library if necessary
if: steps.cache-formlib.outputs.cache-hit != 'true'
Expand All @@ -162,7 +164,9 @@ jobs:
mv forcer-1.0.0/forcer formlib
rm -rf forcer-1.0.0
# color library for the color test in extra
wget https://www.nikhef.nl/~form/maindir/packages/color/color.h -P formlib
wget https://github.com/form-dev/form-packages/archive/refs/tags/v1.0.0.tar.gz -O - | tar -x --gzip
mv form-packages-1.0.0/color/color.h formlib
rm -rf form-packages-1.0.0
;;
esac

Expand Down Expand Up @@ -247,7 +251,7 @@ jobs:
uses: actions/cache@v4
with:
path: formlib
key: formlib-${{ matrix.test }}
key: formlib-${{ matrix.test }}-v1

- name: Install library if necessary
if: steps.cache-formlib.outputs.cache-hit != 'true'
Expand All @@ -261,7 +265,9 @@ jobs:
mv forcer-1.0.0/forcer formlib
rm -rf forcer-1.0.0
# color library for the color test in extra
wget https://www.nikhef.nl/~form/maindir/packages/color/color.h -P formlib
wget https://github.com/form-dev/form-packages/archive/refs/tags/v1.0.0.tar.gz -O - | tar -x --gzip
mv form-packages-1.0.0/color/color.h formlib
rm -rf form-packages-1.0.0
;;
esac

Expand Down Expand Up @@ -330,7 +336,7 @@ jobs:
uses: actions/cache@v4
with:
path: formlib
key: formlib-${{ matrix.test }}
key: formlib-${{ matrix.test }}-v1

- name: Install library if necessary
if: steps.cache-formlib.outputs.cache-hit != 'true'
Expand All @@ -344,7 +350,9 @@ jobs:
mv forcer-1.0.0/forcer formlib
rm -rf forcer-1.0.0
# color library for the color test in extra
wget https://www.nikhef.nl/~form/maindir/packages/color/color.h -P formlib
wget https://github.com/form-dev/form-packages/archive/refs/tags/v1.0.0.tar.gz -O - | tar -x --gzip
mv form-packages-1.0.0/color/color.h formlib
rm -rf form-packages-1.0.0
;;
esac

Expand Down
Loading