Compare commits
	
		
			1 Commits
		
	
	
		
			af629695a5
			...
			0a4a3f6911
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 0a4a3f6911 | 
							
								
								
									
										17
									
								
								.drone.yml
									
									
									
									
									
								
							
							
						
						
									
										17
									
								
								.drone.yml
									
									
									
									
									
								
							@ -9,16 +9,31 @@ concurrency:
 | 
				
			|||||||
steps:
 | 
					steps:
 | 
				
			||||||
- name: build
 | 
					- name: build
 | 
				
			||||||
  image: rustlang/rust:nightly
 | 
					  image: rustlang/rust:nightly
 | 
				
			||||||
 | 
					  volumes:
 | 
				
			||||||
 | 
					  - name: cache
 | 
				
			||||||
 | 
					    path: /usr/local/cargo
 | 
				
			||||||
 | 
					  - name: target-cache
 | 
				
			||||||
 | 
					    path: /drone/src/target
 | 
				
			||||||
  commands:
 | 
					  commands:
 | 
				
			||||||
  - cargo build
 | 
					  - cargo build
 | 
				
			||||||
- name: clippy!
 | 
					- name: clippy!
 | 
				
			||||||
  image: rustlang/rust:nightly
 | 
					  image: rustlang/rust:nightly
 | 
				
			||||||
 | 
					  volumes:
 | 
				
			||||||
 | 
					  - name: cache
 | 
				
			||||||
 | 
					    path: /usr/local/cargo
 | 
				
			||||||
 | 
					  - name: target-cache
 | 
				
			||||||
 | 
					    path: /drone/src/target
 | 
				
			||||||
  commands:
 | 
					  commands:
 | 
				
			||||||
  - cargo clippy -- --deny warnings
 | 
					  - cargo clippy -- --deny warnings
 | 
				
			||||||
- name: test
 | 
					- name: test
 | 
				
			||||||
  image: rustlang/rust:nightly
 | 
					  image: rustlang/rust:nightly
 | 
				
			||||||
 | 
					  volumes:
 | 
				
			||||||
 | 
					  - name: cache
 | 
				
			||||||
 | 
					    path: /usr/local/cargo
 | 
				
			||||||
 | 
					  - name: target-cache
 | 
				
			||||||
 | 
					    path: /drone/src/target
 | 
				
			||||||
  commands:
 | 
					  commands:
 | 
				
			||||||
  - cargo test --jobs 1
 | 
					  - cargo test
 | 
				
			||||||
 | 
					
 | 
				
			||||||
volumes:
 | 
					volumes:
 | 
				
			||||||
- name: cache
 | 
					- name: cache
 | 
				
			||||||
 | 
				
			|||||||
@ -3,10 +3,14 @@
 | 
				
			|||||||
use networking::serverstate::{ClientId, ServerState};
 | 
					use networking::serverstate::{ClientId, ServerState};
 | 
				
			||||||
use entity::gateway::EntityGateway;
 | 
					use entity::gateway::EntityGateway;
 | 
				
			||||||
use entity::account::{UserAccountEntity, NewUserAccountEntity, NewUserSettingsEntity};
 | 
					use entity::account::{UserAccountEntity, NewUserAccountEntity, NewUserSettingsEntity};
 | 
				
			||||||
use entity::character::{CharacterEntity, NewCharacterEntity};
 | 
					use entity::character::{CharacterEntity, NewCharacterEntity, SectionID};
 | 
				
			||||||
use entity::item::{Meseta, BankIdentifier};
 | 
					use entity::item::{Meseta, BankIdentifier};
 | 
				
			||||||
use elseware::ship::ship::{ShipServerState, RecvShipPacket};
 | 
					use elseware::ship::ship::{ShipServerState, RecvShipPacket};
 | 
				
			||||||
use maps::room::Difficulty;
 | 
					use maps::room::{Difficulty, Episode};
 | 
				
			||||||
 | 
					use drops::{DropTable, ItemDropType};
 | 
				
			||||||
 | 
					use maps::area::MapArea;
 | 
				
			||||||
 | 
					use maps::monster::MonsterType;
 | 
				
			||||||
 | 
					use maps::object::MapObject;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
use entity::item;
 | 
					use entity::item;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user