Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
ruby-build
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ruby-build
Commits
54286dcb
Commit
54286dcb
authored
Feb 13, 2016
by
Yamashita, Yuu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use `aria2c` the "ultra fast" download utility if available
parent
9e57fb06
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
67 additions
and
51 deletions
+67
-51
bin/ruby-build
+18
-2
test/build.bats
+1
-1
test/cache.bats
+11
-11
test/checksum.bats
+17
-17
test/fetch.bats
+1
-1
test/mirror.bats
+19
-19
No files found.
bin/ruby-build
View file @
54286dcb
...
@@ -300,16 +300,32 @@ http() {
...
@@ -300,16 +300,32 @@ http() {
local
file
=
"
$3
"
local
file
=
"
$3
"
[
-n
"
$url
"
]
||
return
1
[
-n
"
$url
"
]
||
return
1
if
type
curl &>/dev/null
;
then
if
type
aria2c &>/dev/null
;
then
"http_
${
method
}
_aria2c"
"
$url
"
"
$file
"
elif
type
curl &>/dev/null
;
then
"http_
${
method
}
_curl"
"
$url
"
"
$file
"
"http_
${
method
}
_curl"
"
$url
"
"
$file
"
elif
type
wget &>/dev/null
;
then
elif
type
wget &>/dev/null
;
then
"http_
${
method
}
_wget"
"
$url
"
"
$file
"
"http_
${
method
}
_wget"
"
$url
"
"
$file
"
else
else
echo
"error: please install
\`
curl
\`
or
\`
wget
\`
and try again"
>
&2
echo
"error: please install
\`
aria2c
\`
,
\`
curl
\`
or
\`
wget
\`
and try again"
>
&2
exit
1
exit
1
fi
fi
}
}
http_head_aria2c
()
{
options
=
""
[
-n
"
${
IPV4
}
"
]
&&
options
=
"--disable-ipv6=true"
[
-n
"
${
IPV6
}
"
]
&&
options
=
"--disable-ipv6=false"
aria2c
--dry-run
${
options
}
"
$1
"
>
&4 2>&1
}
http_get_aria2c
()
{
options
=
""
[
-n
"
${
IPV4
}
"
]
&&
options
=
"--disable-ipv6=true"
[
-n
"
${
IPV6
}
"
]
&&
options
=
"--disable-ipv6=false"
aria2c
-o
"
${
2
:-
-
}
"
${
options
}
"
$1
"
}
http_head_curl
()
{
http_head_curl
()
{
options
=
""
options
=
""
[
-n
"
${
IPV4
}
"
]
&&
options
=
"--ipv4"
[
-n
"
${
IPV4
}
"
]
&&
options
=
"--ipv4"
...
...
test/build.bats
View file @
54286dcb
...
@@ -10,7 +10,7 @@ export -n RUBY_CONFIGURE_OPTS
...
@@ -10,7 +10,7 @@ export -n RUBY_CONFIGURE_OPTS
setup() {
setup() {
mkdir -p "$INSTALL_ROOT"
mkdir -p "$INSTALL_ROOT"
stub md5 false
stub md5 false
stub
curl
false
stub
aria2c
false
}
}
executable() {
executable() {
...
...
test/cache.bats
View file @
54286dcb
...
@@ -10,19 +10,19 @@ setup() {
...
@@ -10,19 +10,19 @@ setup() {
@test "packages are saved to download cache" {
@test "packages are saved to download cache" {
stub
curl "-q -o * -*S* http://example.com/* : cp $FIXTURE_ROOT/\${5##*/} \$3
"
stub
aria2c "-o * http://example.com/* : cp $FIXTURE_ROOT/\${3##*/} \$2
"
install_fixture definitions/without-checksum
install_fixture definitions/without-checksum
assert_success
assert_success
assert [ -e "${RUBY_BUILD_CACHE_PATH}/package-1.0.0.tar.gz" ]
assert [ -e "${RUBY_BUILD_CACHE_PATH}/package-1.0.0.tar.gz" ]
unstub
curl
unstub
aria2c
}
}
@test "cached package without checksum" {
@test "cached package without checksum" {
stub
curl
stub
aria2c
cp "${FIXTURE_ROOT}/package-1.0.0.tar.gz" "$RUBY_BUILD_CACHE_PATH"
cp "${FIXTURE_ROOT}/package-1.0.0.tar.gz" "$RUBY_BUILD_CACHE_PATH"
...
@@ -31,13 +31,13 @@ setup() {
...
@@ -31,13 +31,13 @@ setup() {
assert_success
assert_success
assert [ -e "${RUBY_BUILD_CACHE_PATH}/package-1.0.0.tar.gz" ]
assert [ -e "${RUBY_BUILD_CACHE_PATH}/package-1.0.0.tar.gz" ]
unstub
curl
unstub
aria2c
}
}
@test "cached package with valid checksum" {
@test "cached package with valid checksum" {
stub shasum true "echo ba988b1bb4250dee0b9dd3d4d722f9c64b2bacfc805d1b6eba7426bda72dd3c5"
stub shasum true "echo ba988b1bb4250dee0b9dd3d4d722f9c64b2bacfc805d1b6eba7426bda72dd3c5"
stub
curl
stub
aria2c
cp "${FIXTURE_ROOT}/package-1.0.0.tar.gz" "$RUBY_BUILD_CACHE_PATH"
cp "${FIXTURE_ROOT}/package-1.0.0.tar.gz" "$RUBY_BUILD_CACHE_PATH"
...
@@ -47,7 +47,7 @@ setup() {
...
@@ -47,7 +47,7 @@ setup() {
assert [ -x "${INSTALL_ROOT}/bin/package" ]
assert [ -x "${INSTALL_ROOT}/bin/package" ]
assert [ -e "${RUBY_BUILD_CACHE_PATH}/package-1.0.0.tar.gz" ]
assert [ -e "${RUBY_BUILD_CACHE_PATH}/package-1.0.0.tar.gz" ]
unstub
curl
unstub
aria2c
unstub shasum
unstub shasum
}
}
...
@@ -57,8 +57,8 @@ setup() {
...
@@ -57,8 +57,8 @@ setup() {
local checksum="ba988b1bb4250dee0b9dd3d4d722f9c64b2bacfc805d1b6eba7426bda72dd3c5"
local checksum="ba988b1bb4250dee0b9dd3d4d722f9c64b2bacfc805d1b6eba7426bda72dd3c5"
stub shasum true "echo invalid" "echo $checksum"
stub shasum true "echo invalid" "echo $checksum"
stub
curl "-*I
* : true" \
stub
aria2c "--dry-run
* : true" \
"-
q -o * -*S* https://?*/$checksum : cp $FIXTURE_ROOT/package-1.0.0.tar.gz \$3
"
"-
o * https://?*/$checksum : cp $FIXTURE_ROOT/package-1.0.0.tar.gz \$2
"
touch "${RUBY_BUILD_CACHE_PATH}/package-1.0.0.tar.gz"
touch "${RUBY_BUILD_CACHE_PATH}/package-1.0.0.tar.gz"
...
@@ -69,13 +69,13 @@ setup() {
...
@@ -69,13 +69,13 @@ setup() {
assert [ -e "${RUBY_BUILD_CACHE_PATH}/package-1.0.0.tar.gz" ]
assert [ -e "${RUBY_BUILD_CACHE_PATH}/package-1.0.0.tar.gz" ]
assert diff -q "${RUBY_BUILD_CACHE_PATH}/package-1.0.0.tar.gz" "${FIXTURE_ROOT}/package-1.0.0.tar.gz"
assert diff -q "${RUBY_BUILD_CACHE_PATH}/package-1.0.0.tar.gz" "${FIXTURE_ROOT}/package-1.0.0.tar.gz"
unstub
curl
unstub
aria2c
unstub shasum
unstub shasum
}
}
@test "nonexistent cache directory is ignored" {
@test "nonexistent cache directory is ignored" {
stub
curl "-q -o * -*S* http://example.com/* : cp $FIXTURE_ROOT/\${5##*/} \$3
"
stub
aria2c "-o * http://example.com/* : cp $FIXTURE_ROOT/\${3##*/} \$2
"
export RUBY_BUILD_CACHE_PATH="${TMP}/nonexistent"
export RUBY_BUILD_CACHE_PATH="${TMP}/nonexistent"
...
@@ -85,5 +85,5 @@ setup() {
...
@@ -85,5 +85,5 @@ setup() {
assert [ -x "${INSTALL_ROOT}/bin/package" ]
assert [ -x "${INSTALL_ROOT}/bin/package" ]
refute [ -d "$RUBY_BUILD_CACHE_PATH" ]
refute [ -d "$RUBY_BUILD_CACHE_PATH" ]
unstub
curl
unstub
aria2c
}
}
test/checksum.bats
View file @
54286dcb
...
@@ -6,103 +6,103 @@ export RUBY_BUILD_CACHE_PATH=
...
@@ -6,103 +6,103 @@ export RUBY_BUILD_CACHE_PATH=
@test "package URL without checksum" {
@test "package URL without checksum" {
stub
curl "-q -o * -*S* http://example.com/* : cp $FIXTURE_ROOT/\${5##*/} \$3
"
stub
aria2c "-o * http://example.com/* : cp $FIXTURE_ROOT/\${3##*/} \$2
"
install_fixture definitions/without-checksum
install_fixture definitions/without-checksum
assert_success
assert_success
assert [ -x "${INSTALL_ROOT}/bin/package" ]
assert [ -x "${INSTALL_ROOT}/bin/package" ]
unstub
curl
unstub
aria2c
}
}
@test "package URL with valid checksum" {
@test "package URL with valid checksum" {
stub shasum true "echo ba988b1bb4250dee0b9dd3d4d722f9c64b2bacfc805d1b6eba7426bda72dd3c5"
stub shasum true "echo ba988b1bb4250dee0b9dd3d4d722f9c64b2bacfc805d1b6eba7426bda72dd3c5"
stub
curl "-q -o * -*S* http://example.com/* : cp $FIXTURE_ROOT/\${5##*/} \$3
"
stub
aria2c "-o * http://example.com/* : cp $FIXTURE_ROOT/\${3##*/} \$2
"
install_fixture definitions/with-checksum
install_fixture definitions/with-checksum
assert_success
assert_success
assert [ -x "${INSTALL_ROOT}/bin/package" ]
assert [ -x "${INSTALL_ROOT}/bin/package" ]
unstub
curl
unstub
aria2c
unstub shasum
unstub shasum
}
}
@test "package URL with invalid checksum" {
@test "package URL with invalid checksum" {
stub shasum true "echo ba988b1bb4250dee0b9dd3d4d722f9c64b2bacfc805d1b6eba7426bda72dd3c5"
stub shasum true "echo ba988b1bb4250dee0b9dd3d4d722f9c64b2bacfc805d1b6eba7426bda72dd3c5"
stub
curl "-q -o * -*S* http://example.com/* : cp $FIXTURE_ROOT/\${5##*/} \$3
"
stub
aria2c "-o * http://example.com/* : cp $FIXTURE_ROOT/\${3##*/} \$2
"
install_fixture definitions/with-invalid-checksum
install_fixture definitions/with-invalid-checksum
assert_failure
assert_failure
refute [ -f "${INSTALL_ROOT}/bin/package" ]
refute [ -f "${INSTALL_ROOT}/bin/package" ]
unstub
curl
unstub
aria2c
unstub shasum
unstub shasum
}
}
@test "package URL with checksum but no shasum support" {
@test "package URL with checksum but no shasum support" {
stub shasum false
stub shasum false
stub
curl "-q -o * -*S* http://example.com/* : cp $FIXTURE_ROOT/\${5##*/} \$3
"
stub
aria2c "-o * http://example.com/* : cp $FIXTURE_ROOT/\${3##*/} \$2
"
install_fixture definitions/with-checksum
install_fixture definitions/with-checksum
assert_success
assert_success
assert [ -x "${INSTALL_ROOT}/bin/package" ]
assert [ -x "${INSTALL_ROOT}/bin/package" ]
unstub
curl
unstub
aria2c
unstub shasum
unstub shasum
}
}
@test "package URL with valid md5 checksum" {
@test "package URL with valid md5 checksum" {
stub md5 true "echo 83e6d7725e20166024a1eb74cde80677"
stub md5 true "echo 83e6d7725e20166024a1eb74cde80677"
stub
curl "-q -o * -*S* http://example.com/* : cp $FIXTURE_ROOT/\${5##*/} \$3
"
stub
aria2c "-o * http://example.com/* : cp $FIXTURE_ROOT/\${3##*/} \$2
"
install_fixture definitions/with-md5-checksum
install_fixture definitions/with-md5-checksum
assert_success
assert_success
assert [ -x "${INSTALL_ROOT}/bin/package" ]
assert [ -x "${INSTALL_ROOT}/bin/package" ]
unstub
curl
unstub
aria2c
unstub md5
unstub md5
}
}
@test "package URL with md5 checksum but no md5 support" {
@test "package URL with md5 checksum but no md5 support" {
stub md5 false
stub md5 false
stub
curl "-q -o * -*S* http://example.com/* : cp $FIXTURE_ROOT/\${5##*/} \$3
"
stub
aria2c "-o * http://example.com/* : cp $FIXTURE_ROOT/\${3##*/} \$2
"
install_fixture definitions/with-md5-checksum
install_fixture definitions/with-md5-checksum
assert_success
assert_success
assert [ -x "${INSTALL_ROOT}/bin/package" ]
assert [ -x "${INSTALL_ROOT}/bin/package" ]
unstub
curl
unstub
aria2c
unstub md5
unstub md5
}
}
@test "package with invalid checksum" {
@test "package with invalid checksum" {
stub shasum true "echo invalid"
stub shasum true "echo invalid"
stub
curl "-q -o * -*S* http://example.com/* : cp $FIXTURE_ROOT/\${5##*/} \$3
"
stub
aria2c "-o * http://example.com/* : cp $FIXTURE_ROOT/\${3##*/} \$2
"
install_fixture definitions/with-checksum
install_fixture definitions/with-checksum
assert_failure
assert_failure
refute [ -f "${INSTALL_ROOT}/bin/package" ]
refute [ -f "${INSTALL_ROOT}/bin/package" ]
unstub
curl
unstub
aria2c
unstub shasum
unstub shasum
}
}
@test "existing tarball in build location is reused" {
@test "existing tarball in build location is reused" {
stub shasum true "echo ba988b1bb4250dee0b9dd3d4d722f9c64b2bacfc805d1b6eba7426bda72dd3c5"
stub shasum true "echo ba988b1bb4250dee0b9dd3d4d722f9c64b2bacfc805d1b6eba7426bda72dd3c5"
stub
curl
false
stub
aria2c
false
stub wget false
stub wget false
export -n RUBY_BUILD_CACHE_PATH
export -n RUBY_BUILD_CACHE_PATH
...
@@ -125,7 +125,7 @@ DEF
...
@@ -125,7 +125,7 @@ DEF
stub shasum true \
stub shasum true \
"echo invalid" \
"echo invalid" \
"echo ba988b1bb4250dee0b9dd3d4d722f9c64b2bacfc805d1b6eba7426bda72dd3c5"
"echo ba988b1bb4250dee0b9dd3d4d722f9c64b2bacfc805d1b6eba7426bda72dd3c5"
stub
curl "-q -o * -*S* http://example.com/* : cp $FIXTURE_ROOT/\${5##*/} \$3
"
stub
aria2c "-o * http://example.com/* : cp $FIXTURE_ROOT/\${3##*/} \$2
"
export -n RUBY_BUILD_CACHE_PATH
export -n RUBY_BUILD_CACHE_PATH
export RUBY_BUILD_BUILD_PATH="${TMP}/build"
export RUBY_BUILD_BUILD_PATH="${TMP}/build"
...
@@ -144,7 +144,7 @@ DEF
...
@@ -144,7 +144,7 @@ DEF
}
}
@test "package URL with checksum of unexpected length" {
@test "package URL with checksum of unexpected length" {
stub
curl "-q -o * -*S* http://example.com/* : cp $FIXTURE_ROOT/\${5##*/} \$3
"
stub
aria2c "-o * http://example.com/* : cp $FIXTURE_ROOT/\${3##*/} \$2
"
run_inline_definition <<DEF
run_inline_definition <<DEF
install_package "package-1.0.0" "http://example.com/packages/package-1.0.0.tar.gz#checksum_of_unexpected_length" copy
install_package "package-1.0.0" "http://example.com/packages/package-1.0.0.tar.gz#checksum_of_unexpected_length" copy
...
...
test/fetch.bats
View file @
54286dcb
...
@@ -10,7 +10,7 @@ setup() {
...
@@ -10,7 +10,7 @@ setup() {
}
}
@test "failed download displays error message" {
@test "failed download displays error message" {
stub
curl
false
stub
aria2c
false
install_fixture definitions/without-checksum
install_fixture definitions/without-checksum
assert_failure
assert_failure
...
...
test/mirror.bats
View file @
54286dcb
...
@@ -8,7 +8,7 @@ export RUBY_BUILD_MIRROR_URL=http://mirror.example.com
...
@@ -8,7 +8,7 @@ export RUBY_BUILD_MIRROR_URL=http://mirror.example.com
@test "package URL without checksum bypasses mirror" {
@test "package URL without checksum bypasses mirror" {
stub shasum true
stub shasum true
stub
curl "-q -o * -*S* http://example.com/* : cp $FIXTURE_ROOT/\${5##*/} \$3
"
stub
aria2c "-o * http://example.com/* : cp $FIXTURE_ROOT/\${3##*/} \$2
"
install_fixture definitions/without-checksum
install_fixture definitions/without-checksum
echo "$output" >&2
echo "$output" >&2
...
@@ -16,21 +16,21 @@ export RUBY_BUILD_MIRROR_URL=http://mirror.example.com
...
@@ -16,21 +16,21 @@ export RUBY_BUILD_MIRROR_URL=http://mirror.example.com
assert_success
assert_success
assert [ -x "${INSTALL_ROOT}/bin/package" ]
assert [ -x "${INSTALL_ROOT}/bin/package" ]
unstub
curl
unstub
aria2c
unstub shasum
unstub shasum
}
}
@test "package URL with checksum but no shasum support bypasses mirror" {
@test "package URL with checksum but no shasum support bypasses mirror" {
stub shasum false
stub shasum false
stub
curl "-q -o * -*S* http://example.com/* : cp $FIXTURE_ROOT/\${5##*/} \$3
"
stub
aria2c "-o * http://example.com/* : cp $FIXTURE_ROOT/\${3##*/} \$2
"
install_fixture definitions/with-checksum
install_fixture definitions/with-checksum
assert_success
assert_success
assert [ -x "${INSTALL_ROOT}/bin/package" ]
assert [ -x "${INSTALL_ROOT}/bin/package" ]
unstub
curl
unstub
aria2c
unstub shasum
unstub shasum
}
}
...
@@ -40,15 +40,15 @@ export RUBY_BUILD_MIRROR_URL=http://mirror.example.com
...
@@ -40,15 +40,15 @@ export RUBY_BUILD_MIRROR_URL=http://mirror.example.com
local mirror_url="${RUBY_BUILD_MIRROR_URL}/$checksum"
local mirror_url="${RUBY_BUILD_MIRROR_URL}/$checksum"
stub shasum true "echo $checksum"
stub shasum true "echo $checksum"
stub
curl "-*I*
$mirror_url : true" \
stub
aria2c "--dry-run
$mirror_url : true" \
"-
q -o * -*S* $mirror_url : cp $FIXTURE_ROOT/package-1.0.0.tar.gz \$3
"
"-
o * $mirror_url : cp $FIXTURE_ROOT/package-1.0.0.tar.gz \$2
"
install_fixture definitions/with-checksum
install_fixture definitions/with-checksum
assert_success
assert_success
assert [ -x "${INSTALL_ROOT}/bin/package" ]
assert [ -x "${INSTALL_ROOT}/bin/package" ]
unstub
curl
unstub
aria2c
unstub shasum
unstub shasum
}
}
...
@@ -58,15 +58,15 @@ export RUBY_BUILD_MIRROR_URL=http://mirror.example.com
...
@@ -58,15 +58,15 @@ export RUBY_BUILD_MIRROR_URL=http://mirror.example.com
local mirror_url="${RUBY_BUILD_MIRROR_URL}/$checksum"
local mirror_url="${RUBY_BUILD_MIRROR_URL}/$checksum"
stub shasum true "echo $checksum"
stub shasum true "echo $checksum"
stub
curl "-*I*
$mirror_url : false" \
stub
aria2c "--dry-run
$mirror_url : false" \
"-
q -o * -*S* http://example.com/* : cp $FIXTURE_ROOT/\${5##*/} \$3
"
"-
o * http://example.com/* : cp $FIXTURE_ROOT/\${3##*/} \$2
"
install_fixture definitions/with-checksum
install_fixture definitions/with-checksum
assert_success
assert_success
assert [ -x "${INSTALL_ROOT}/bin/package" ]
assert [ -x "${INSTALL_ROOT}/bin/package" ]
unstub
curl
unstub
aria2c
unstub shasum
unstub shasum
}
}
...
@@ -76,9 +76,9 @@ export RUBY_BUILD_MIRROR_URL=http://mirror.example.com
...
@@ -76,9 +76,9 @@ export RUBY_BUILD_MIRROR_URL=http://mirror.example.com
local mirror_url="${RUBY_BUILD_MIRROR_URL}/$checksum"
local mirror_url="${RUBY_BUILD_MIRROR_URL}/$checksum"
stub shasum true "echo invalid" "echo $checksum"
stub shasum true "echo invalid" "echo $checksum"
stub
curl "-*I*
$mirror_url : true" \
stub
aria2c "--dry-run
$mirror_url : true" \
"-
q -o * -*S* $mirror_url : cp $FIXTURE_ROOT/package-1.0.0.tar.gz \$3
" \
"-
o * $mirror_url : cp $FIXTURE_ROOT/package-1.0.0.tar.gz \$2
" \
"-
q -o * -*S* http://example.com/* : cp $FIXTURE_ROOT/\${5##*/} \$3
"
"-
o * http://example.com/* : cp $FIXTURE_ROOT/\${3##*/} \$2
"
install_fixture definitions/with-checksum
install_fixture definitions/with-checksum
echo "$output" >&2
echo "$output" >&2
...
@@ -86,7 +86,7 @@ export RUBY_BUILD_MIRROR_URL=http://mirror.example.com
...
@@ -86,7 +86,7 @@ export RUBY_BUILD_MIRROR_URL=http://mirror.example.com
assert_success
assert_success
assert [ -x "${INSTALL_ROOT}/bin/package" ]
assert [ -x "${INSTALL_ROOT}/bin/package" ]
unstub
curl
unstub
aria2c
unstub shasum
unstub shasum
}
}
...
@@ -96,15 +96,15 @@ export RUBY_BUILD_MIRROR_URL=http://mirror.example.com
...
@@ -96,15 +96,15 @@ export RUBY_BUILD_MIRROR_URL=http://mirror.example.com
local checksum="ba988b1bb4250dee0b9dd3d4d722f9c64b2bacfc805d1b6eba7426bda72dd3c5"
local checksum="ba988b1bb4250dee0b9dd3d4d722f9c64b2bacfc805d1b6eba7426bda72dd3c5"
stub shasum true "echo $checksum"
stub shasum true "echo $checksum"
stub
curl "-*I*
: true" \
stub
aria2c "--dry-run
: true" \
"-
q -o * -*S* https://?*/$checksum : cp $FIXTURE_ROOT/package-1.0.0.tar.gz \$3
" \
"-
o * https://?*/$checksum : cp $FIXTURE_ROOT/package-1.0.0.tar.gz \$2
" \
install_fixture definitions/with-checksum
install_fixture definitions/with-checksum
assert_success
assert_success
assert [ -x "${INSTALL_ROOT}/bin/package" ]
assert [ -x "${INSTALL_ROOT}/bin/package" ]
unstub
curl
unstub
aria2c
unstub shasum
unstub shasum
}
}
...
@@ -114,7 +114,7 @@ export RUBY_BUILD_MIRROR_URL=http://mirror.example.com
...
@@ -114,7 +114,7 @@ export RUBY_BUILD_MIRROR_URL=http://mirror.example.com
local checksum="ba988b1bb4250dee0b9dd3d4d722f9c64b2bacfc805d1b6eba7426bda72dd3c5"
local checksum="ba988b1bb4250dee0b9dd3d4d722f9c64b2bacfc805d1b6eba7426bda72dd3c5"
stub shasum true "echo $checksum"
stub shasum true "echo $checksum"
stub
curl "-q -o * -*S* https://cache.ruby-lang.org/* : cp $FIXTURE_ROOT/\${5##*/} \$3
"
stub
aria2c "-o * https://cache.ruby-lang.org/* : cp $FIXTURE_ROOT/\${3##*/} \$2
"
run_inline_definition <<DEF
run_inline_definition <<DEF
install_package "package-1.0.0" "https://cache.ruby-lang.org/packages/package-1.0.0.tar.gz#ba988b1bb4250dee0b9dd3d4d722f9c64b2bacfc805d1b6eba7426bda72dd3c5" copy
install_package "package-1.0.0" "https://cache.ruby-lang.org/packages/package-1.0.0.tar.gz#ba988b1bb4250dee0b9dd3d4d722f9c64b2bacfc805d1b6eba7426bda72dd3c5" copy
...
@@ -123,6 +123,6 @@ DEF
...
@@ -123,6 +123,6 @@ DEF
assert_success
assert_success
assert [ -x "${INSTALL_ROOT}/bin/package" ]
assert [ -x "${INSTALL_ROOT}/bin/package" ]
unstub
curl
unstub
aria2c
unstub shasum
unstub shasum
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment