Skip to content

Commit

Permalink
skip cache in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
haikyuu committed May 16, 2024
1 parent abcaca9 commit 19ec6c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/imba/src/bundler/cache.imba
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ export default class Cache
# let file = program.fs.lookup(np.resolve(dir,key))
# let mtime = file.mtimesync

if keytime > time
if (keytime > time) and !process.env.CI
let promise = getKeyValue(key).catch do(error)
console.warn "Error compiling file in getKeyValue name: {name}, key: {key}", error
cb!.then do(val) setKeyValue(key,val)
Expand Down

0 comments on commit 19ec6c0

Please sign in to comment.