-
-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Standardize on using the Alpine Ruby base images since they tend to use a more recent version of glibc. Since Alpine images don't include `bash` and `gcompat` by default, add a wrapper (`scripts/test-gem-install-sh`) for Alpine.
- Loading branch information
Showing
2 changed files
with
13 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,9 @@ | ||
#! /usr/bin/env sh | ||
# | ||
# run as part of CI | ||
# | ||
if [ -f /etc/alpine-release ]; then | ||
apk add bash gcompat | ||
fi | ||
|
||
./scripts/test-gem-install $@ |