Adds CI configuration that builds the Rust package, and exports the package back to Github after submits to canon. Change-Id: I2f8dcff2a614898c55115f44510543ff25d46b55 Reviewed-on: https://cl.tvl.fyi/c/depot/+/12996 Autosubmit: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI Reviewed-by: thk <thomas@koch.ro>
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			494 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			494 B
		
	
	
	
		
			Nix
		
	
	
	
	
	
| { depot, pkgs, ... }:
 | |
| 
 | |
| pkgs.rustPlatform.buildRustPackage {
 | |
|   name = "planet-mars";
 | |
|   src = depot.third_party.gitignoreSource ./.;
 | |
|   cargoLock.lockFile = ./Cargo.lock;
 | |
| 
 | |
|   nativeBuildInputs = [ pkgs.pkg-config ];
 | |
|   buildInputs = [ pkgs.openssl ];
 | |
| 
 | |
|   # planet-mars is mirrored to Github.
 | |
|   passthru.meta.ci.extraSteps.github = depot.tools.releases.filteredGitPush {
 | |
|     filter = ":/web/planet-mars";
 | |
|     remote = "git@github.com:thkoch2001/planet-mars.git";
 | |
|     ref = "refs/heads/master";
 | |
|   };
 | |
| }
 |