File tree 3 files changed +11
-13
lines changed
3 files changed +11
-13
lines changed Original file line number Diff line number Diff line change @@ -18,11 +18,10 @@ jobs:
18
18
with :
19
19
key : nix-${{ runner.os }}-front-${{ hashfiles('**/flake.nix', '**/flake.lock') }}
20
20
linux-gc-enabled : true
21
- linux-max-store-size : 0
21
+ linux-max-store-size : 900000000
22
22
macos-gc-enabled : true
23
- macos-max-store-size : 0
23
+ macos-max-store-size : 900000000
24
24
restore-keys : |
25
- nix-${{ runner.os }}-front-${{ hashfiles('**/flake.nix', '**/flake.lock') }}
26
25
nix-${{ runner.os }}-front-
27
26
- name : Build
28
27
run : |-
@@ -56,11 +55,10 @@ jobs:
56
55
with :
57
56
key : nix-${{ runner.os }}-back-${{ hashfiles('**/flake.nix', '**/flake.lock') }}
58
57
linux-gc-enabled : true
59
- linux-max-store-size : 0
58
+ linux-max-store-size : 7000000000
60
59
macos-gc-enabled : true
61
- macos-max-store-size : 0
60
+ macos-max-store-size : 7000000000
62
61
restore-keys : |
63
- nix-${{ runner.os }}-back-${{ hashfiles('**/flake.nix', '**/flake.lock') }}
64
62
nix-${{ runner.os }}-back-
65
63
- name : Log in to Heroku
66
64
uses : AkhileshNS/heroku-deploy@master
Original file line number Diff line number Diff line change 26
26
( steps . cacheNix {
27
27
keyJob = "front" ;
28
28
linuxGCEnabled = true ;
29
- linuxMaxStoreSize = 0 ;
29
+ linuxMaxStoreSize = 900000000 ;
30
30
macosGCEnabled = true ;
31
- macosMaxStoreSize = 0 ;
31
+ macosMaxStoreSize = 900000000 ;
32
32
} )
33
33
{
34
34
name = "Build" ;
55
55
( steps . cacheNix {
56
56
keyJob = "back" ;
57
57
linuxGCEnabled = true ;
58
- linuxMaxStoreSize = 0 ;
58
+ linuxMaxStoreSize = 7000000000 ;
59
59
macosGCEnabled = true ;
60
- macosMaxStoreSize = 0 ;
60
+ macosMaxStoreSize = 7000000000 ;
61
61
} )
62
62
{
63
63
name = "Log in to Heroku" ;
You can’t perform that action at this time.
0 commit comments