File tree 2 files changed +0
-28
lines changed
2 files changed +0
-28
lines changed Original file line number Diff line number Diff line change @@ -7756,19 +7756,6 @@ async function setup() {
7756
7756
if ( cachixBin !== "" ) {
7757
7757
core . debug ( `Using Cachix executable from input: ${ cachixBin } ` ) ;
7758
7758
}
7759
- else if ( useDaemon ) {
7760
- // TODO: remove once stable and the daemon has been released
7761
- cachixBin = await execToVariable ( 'nix' , [
7762
- 'build' ,
7763
- '--show-trace' ,
7764
- '--print-out-paths' ,
7765
- '--accept-flake-config' ,
7766
- '--extra-experimental-features' ,
7767
- 'nix-command flakes' ,
7768
- 'github:cachix/cachix/feature/daemon' ,
7769
- ] ) . then ( ( storePath ) => `${ storePath . trimEnd ( ) } /bin/cachix` ) ;
7770
- core . info ( `Daemon mode is enabled. Using the latest Cachix executable from github:cachix/cachix/feature/daemon: ${ cachixBin } ` ) ;
7771
- }
7772
7759
else {
7773
7760
// Find the Cachix executable in PATH
7774
7761
let resolvedCachixBin = which_1 . default . sync ( 'cachix' , { nothrow : true } ) ;
Original file line number Diff line number Diff line change @@ -33,21 +33,6 @@ async function setup() {
33
33
34
34
if ( cachixBin !== "" ) {
35
35
core . debug ( `Using Cachix executable from input: ${ cachixBin } ` ) ;
36
- } else if ( useDaemon ) {
37
- // TODO: remove once stable and the daemon has been released
38
- cachixBin = await execToVariable (
39
- 'nix' ,
40
- [
41
- 'build' ,
42
- '--show-trace' ,
43
- '--print-out-paths' ,
44
- '--accept-flake-config' ,
45
- '--extra-experimental-features' ,
46
- 'nix-command flakes' ,
47
- 'github:cachix/cachix/feature/daemon' ,
48
- ] ,
49
- ) . then ( ( storePath ) => `${ storePath . trimEnd ( ) } /bin/cachix` ) ;
50
- core . info ( `Daemon mode is enabled. Using the latest Cachix executable from github:cachix/cachix/feature/daemon: ${ cachixBin } ` ) ;
51
36
} else {
52
37
// Find the Cachix executable in PATH
53
38
let resolvedCachixBin = which . sync ( 'cachix' , { nothrow : true } ) ;
You can’t perform that action at this time.
0 commit comments