Compare commits
1 Commits
0a4a3f6911
...
af629695a5
Author | SHA1 | Date | |
---|---|---|---|
af629695a5 |
17
.drone.yml
17
.drone.yml
@ -9,31 +9,16 @@ 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
|
- cargo test --jobs 1
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
- name: cache
|
- name: cache
|
||||||
|
@ -3,14 +3,10 @@
|
|||||||
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, SectionID};
|
use entity::character::{CharacterEntity, NewCharacterEntity};
|
||||||
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, Episode};
|
use maps::room::Difficulty;
|
||||||
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