-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create install-dep-gsl action, remove GSL from general PDL config
- Loading branch information
Showing
4 changed files
with
24 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: Install GSL | ||
runs: | ||
using: "composite" | ||
steps: | ||
- name: Install GSL (via apt-get) | ||
shell: bash | ||
run: | | ||
if ${{ toJSON( runner.os == 'Linux' ) }}; then | ||
echo "::group::Install GSL (via apt-get)" | ||
sudo apt-get -y update && sudo apt-get install --no-install-recommends -y libgsl0-dev | ||
echo "::endgroup::" | ||
fi | ||
- name: Install GSL (via brew) | ||
shell: bash | ||
run: | | ||
if ${{ toJSON( runner.os == 'macOS' ) }}; then | ||
echo "::group::Install GSL (via brew)" | ||
brew install gsl | ||
echo "::endgroup::" | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters