-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #953 from shawnlaffan/issue_822_curveball2
Do curveball properly
- Loading branch information
Showing
2 changed files
with
73 additions
and
27 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 |
---|---|---|
|
@@ -34,16 +34,23 @@ jobs: | |
which perl | ||
which cpanm | ||
# some painful steps here that will hopefully be backed out at some point | ||
- name: Install GDAL and its deps | ||
run: brew install --force --overwrite gdal | ||
run: | | ||
brew update | ||
brew unlink [email protected] | ||
brew install pkgconf | ||
brew link --overwrite pkgconf | ||
brew install gdal | ||
# brew install --force --overwrite gdal | ||
- name: perl -V | ||
run: perl -V | ||
|
||
- name: Prepare for cache | ||
run: | | ||
perl -V > perlversion.txt | ||
echo '20220920' >> perlversion.txt | ||
echo '20241125' >> perlversion.txt | ||
ls -l perlversion.txt | ||
- name: Cache CPAN modules | ||
|
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