-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
52 additions
and
52 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/usr/bin/env bash | ||
|
||
[ $# -ne 1 ] && exit 1 | ||
runner=$1 | ||
|
||
case "$runner" in | ||
'ubuntu-latest') | ||
python -m pip install meson ninja | ||
;; | ||
'macos-latest') | ||
brew install meson ninja tree | ||
# install fortran compiler: | ||
brew install gcc | ||
brew unlink gcc | ||
brew link gcc | ||
;; | ||
*) | ||
exit 1 | ||
;; | ||
esac |
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
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
option('dataframes', type: 'boolean', value: true, description: 'install HIPO dataframes extension') | ||
option('install_examples', type: 'boolean', value: false, description: 'install examples') | ||
option('test_file', type: 'string', value: '', description: 'sample HIPO file to use for certain tests; if unspecified, those tests will not run') | ||
option('test_file', type: 'string', value: '', description: 'sample HIPO file to use for certain tests; if unspecified, those tests will not run; must be an absolute path') | ||
option('test_fortran', type: 'boolean', value: false, description: 'test Fortran example; you must have a Fortran compiler, and "test_file" option must be set') |