Compare commits
1 Commits
af629695a5
...
0a4a3f6911
Author | SHA1 | Date | |
---|---|---|---|
0a4a3f6911 |
17
.drone.yml
17
.drone.yml
@ -9,16 +9,31 @@ concurrency:
|
||||
steps:
|
||||
- name: build
|
||||
image: rustlang/rust:nightly
|
||||
volumes:
|
||||
- name: cache
|
||||
path: /usr/local/cargo
|
||||
- name: target-cache
|
||||
path: /drone/src/target
|
||||
commands:
|
||||
- cargo build
|
||||
- name: clippy!
|
||||
image: rustlang/rust:nightly
|
||||
volumes:
|
||||
- name: cache
|
||||
path: /usr/local/cargo
|
||||
- name: target-cache
|
||||
path: /drone/src/target
|
||||
commands:
|
||||
- cargo clippy -- --deny warnings
|
||||
- name: test
|
||||
image: rustlang/rust:nightly
|
||||
volumes:
|
||||
- name: cache
|
||||
path: /usr/local/cargo
|
||||
- name: target-cache
|
||||
path: /drone/src/target
|
||||
commands:
|
||||
- cargo test --jobs 1
|
||||
- cargo test
|
||||
|
||||
volumes:
|
||||
- name: cache
|
||||
|
@ -3,10 +3,14 @@
|
||||
use networking::serverstate::{ClientId, ServerState};
|
||||
use entity::gateway::EntityGateway;
|
||||
use entity::account::{UserAccountEntity, NewUserAccountEntity, NewUserSettingsEntity};
|
||||
use entity::character::{CharacterEntity, NewCharacterEntity};
|
||||
use entity::character::{CharacterEntity, NewCharacterEntity, SectionID};
|
||||
use entity::item::{Meseta, BankIdentifier};
|
||||
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;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user