File tree Expand file tree Collapse file tree 5 files changed +4
-43
lines changed
Expand file tree Collapse file tree 5 files changed +4
-43
lines changed Load Diff This file was deleted.
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -22,6 +22,8 @@ const CARGO_GIT_CACHE_DIR: &str = "/root/.cargo/git";
2222const CARGO_REGISTRY_CACHE_DIR : & str = "/root/.cargo/registry" ;
2323const CARGO_TARGET_CACHE_DIR : & str = "target" ;
2424
25+ const NIX_ARCHIVE : & str = "ef56e777fedaa4da8c66a150081523c5de1e0171" ;
26+
2527pub struct RustProvider { }
2628
2729impl Provider for RustProvider {
@@ -76,6 +78,8 @@ impl RustProvider {
7678 setup. add_nix_pkgs ( & [ Pkg :: new ( "musl" ) , Pkg :: new ( "musl.dev" ) ] ) ;
7779 }
7880
81+ setup. set_nix_archive ( NIX_ARCHIVE . to_string ( ) ) ;
82+
7983 Ok ( setup)
8084 }
8185
Original file line number Diff line number Diff line change @@ -1060,13 +1060,6 @@ async fn test_django_mysql() -> Result<()> {
10601060 Ok ( ( ) )
10611061}
10621062
1063- #[ tokio:: test]
1064- async fn test_lunatic_basic ( ) {
1065- let name = simple_build ( "./examples/lunatic-basic" ) . await . unwrap ( ) ;
1066- let output = run_image ( & name, None ) . await ;
1067- assert ! ( output. contains( "PING-PONG" ) ) ;
1068- }
1069-
10701063#[ tokio:: test]
10711064async fn test_python_poetry ( ) {
10721065 let name = simple_build ( "./examples/python-poetry" ) . await . unwrap ( ) ;
You can’t perform that action at this time.
0 commit comments