Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
renovate
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
GitHub Mirror
Renovate Bot
renovate
Commits
b53e5e40
Unverified
Commit
b53e5e40
authored
3 years ago
by
Sergei Zharinov
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Patches
Plain Diff
refactor(bundler): Use util function for cache dir creation (#10586)
parent
1df94a25
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
lib/manager/bundler/artifacts.spec.ts
+4
-0
4 additions, 0 deletions
lib/manager/bundler/artifacts.spec.ts
lib/manager/bundler/artifacts.ts
+5
-2
5 additions, 2 deletions
lib/manager/bundler/artifacts.ts
lib/manager/bundler/utils.ts
+0
-15
0 additions, 15 deletions
lib/manager/bundler/utils.ts
with
9 additions
and
17 deletions
lib/manager/bundler/artifacts.spec.ts
+
4
−
0
View file @
b53e5e40
...
@@ -46,6 +46,10 @@ describe('bundler.updateArtifacts()', () => {
...
@@ -46,6 +46,10 @@ describe('bundler.updateArtifacts()', () => {
docker
.
resetPrefetchedImages
();
docker
.
resetPrefetchedImages
();
setAdminConfig
(
adminConfig
);
setAdminConfig
(
adminConfig
);
fs
.
ensureCacheDir
.
mockResolvedValueOnce
(
join
(
adminConfig
.
cacheDir
,
'
./others/gem
'
)
);
});
});
afterEach
(()
=>
{
afterEach
(()
=>
{
setAdminConfig
();
setAdminConfig
();
...
...
This diff is collapsed.
Click to expand it.
lib/manager/bundler/artifacts.ts
+
5
−
2
View file @
b53e5e40
...
@@ -10,6 +10,7 @@ import * as memCache from '../../util/cache/memory';
...
@@ -10,6 +10,7 @@ import * as memCache from '../../util/cache/memory';
import
{
ExecOptions
,
exec
}
from
'
../../util/exec
'
;
import
{
ExecOptions
,
exec
}
from
'
../../util/exec
'
;
import
{
import
{
deleteLocalFile
,
deleteLocalFile
,
ensureCacheDir
,
getSiblingFileName
,
getSiblingFileName
,
readLocalFile
,
readLocalFile
,
writeLocalFile
,
writeLocalFile
,
...
@@ -22,7 +23,6 @@ import {
...
@@ -22,7 +23,6 @@ import {
findAllAuthenticatable
,
findAllAuthenticatable
,
getAuthenticationHeaderValue
,
getAuthenticationHeaderValue
,
}
from
'
./host-rules
'
;
}
from
'
./host-rules
'
;
import
{
getGemHome
}
from
'
./utils
'
;
const
hostConfigVariablePrefix
=
'
BUNDLE_
'
;
const
hostConfigVariablePrefix
=
'
BUNDLE_
'
;
...
@@ -169,11 +169,14 @@ export async function updateArtifacts(
...
@@ -169,11 +169,14 @@ export async function updateArtifacts(
);
);
}
}
const
cacheDir
=
await
ensureCacheDir
(
'
./others/gem
'
,
'
GEM_HOME
'
);
logger
.
debug
(
`Using gem home
${
cacheDir
}
`
);
const
execOptions
:
ExecOptions
=
{
const
execOptions
:
ExecOptions
=
{
cwdFile
:
packageFileName
,
cwdFile
:
packageFileName
,
extraEnv
:
{
extraEnv
:
{
...
bundlerHostRulesVariables
,
...
bundlerHostRulesVariables
,
GEM_HOME
:
await
getGemHome
(
config
)
,
GEM_HOME
:
cacheDir
,
},
},
docker
:
{
docker
:
{
image
:
'
ruby
'
,
image
:
'
ruby
'
,
...
...
This diff is collapsed.
Click to expand it.
lib/manager/bundler/utils.ts
deleted
100644 → 0
+
0
−
15
View file @
1df94a25
import
{
join
}
from
'
upath
'
;
import
{
getAdminConfig
}
from
'
../../config/admin
'
;
import
{
logger
}
from
'
../../logger
'
;
import
{
ensureDir
}
from
'
../../util/fs
'
;
import
type
{
UpdateArtifactsConfig
}
from
'
../types
'
;
export
async
function
getGemHome
(
config
:
UpdateArtifactsConfig
):
Promise
<
string
>
{
const
cacheDir
=
process
.
env
.
GEM_HOME
||
join
(
getAdminConfig
().
cacheDir
,
'
./others/gem
'
);
await
ensureDir
(
cacheDir
);
logger
.
debug
(
`Using gem home
${
cacheDir
}
`
);
return
cacheDir
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment