Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ jobs:
- name: install livekit deps
run: sudo apt update -y; sudo apt install -y libssl-dev libx11-dev libgl1-mesa-dev libxext-dev
- uses: actions/checkout@v2
with:
submodules: true
- uses: actions-rs/cargo@v1
with:
command: check
Expand Down Expand Up @@ -63,6 +65,8 @@ jobs:
- name: install livekit deps
run: sudo apt update -y; sudo apt install -y libssl-dev libx11-dev libgl1-mesa-dev libxext-dev
- uses: actions/checkout@v2
with:
submodules: true
- name: Test Scenes
continue-on-error: true
run: |
Expand All @@ -77,6 +81,14 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
with:
submodules: true
- name: Set Windows git config
if: runner.os == 'windows'
shell: cmd
run: |
del crates\dcl_component\src\proto
mklink /j crates\dcl_component\src\proto protocol\proto
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand Down Expand Up @@ -139,6 +151,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand All @@ -164,6 +178,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
submodules: true
- uses: actions-rs/toolchain@v1
with:
profile: minimal
Expand Down Expand Up @@ -191,6 +207,7 @@ jobs:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
persist-credentials: false
submodules: true
- name: Install taplo
run: curl -fsSL https://github.com/tamasfe/taplo/releases/download/0.10.0/taplo-linux-x86_64.gz | gzip -d - | install -m 755 /dev/stdin /usr/local/bin/taplo
- name: Run Taplo
Expand All @@ -216,6 +233,8 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
submodules: true
- name: Use Node.js
uses: actions/setup-node@v4
with:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ jobs:
steps:
- name: Clone repo
uses: actions/checkout@v3
with:
submodules: true

- name: Get current time with underscores
uses: 1466587594/[email protected]
Expand Down Expand Up @@ -61,6 +63,8 @@ jobs:
steps:
- name: Clone repo
uses: actions/checkout@v3
with:
submodules: true

- uses: actions-rs/toolchain@v1
with:
Expand Down
4 changes: 4 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
[submodule "protocol"]
path = protocol
url = https://github.com/decentraland/protocol
branch = protocol-squad
3 changes: 3 additions & 0 deletions crates/comms/src/broadcast_position.rs
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,9 @@ fn broadcast_position(
is_long_fall: movement_compressed.temporal.long_falling(),
is_falling: movement_compressed.temporal.falling(),
is_stunned: movement_compressed.temporal.stunned(),
is_instant: Default::default(),
// TODO
// is_instant: movement_compressed.temporal.instant(),
is_emoting: dynamics.move_kind == MoveKind::Emote,
};

Expand Down
4 changes: 2 additions & 2 deletions crates/dcl_component/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ fn gen_sdk_components() -> Result<()> {
sources.push("src/proto/decentraland/kernel/comms/rfc5/ws_comms.proto".into());
sources.push("src/proto/decentraland/kernel/comms/rfc4/comms.proto".into());
sources.push("src/proto/decentraland/kernel/comms/v3/archipelago.proto".into());
sources.push("src/proto/decentraland/social/friendships/friendships.proto".into());
sources.push("src/proto/decentraland/social_service/v1/social_service_v1.proto".into());

let mut config = prost_build::Config::new();
config.type_attribute(
Expand Down Expand Up @@ -133,7 +133,7 @@ fn gen_social_service() -> Result<()> {
conf.service_generator(Box::new(dcl_rpc::codegen::RPCServiceGenerator::new()));
conf.type_attribute("*", "#[derive(Debug)]");
conf.compile_protos(
&["src/proto/decentraland/social/friendships/friendships.proto"],
&["src/proto/decentraland/social_service/v1/social_service_v1.proto"],
&["src/proto"],
)?;
Ok(())
Expand Down
1 change: 1 addition & 0 deletions crates/dcl_component/src/proto
47 changes: 0 additions & 47 deletions crates/dcl_component/src/proto/buf.yaml

This file was deleted.

This file was deleted.

15 changes: 0 additions & 15 deletions crates/dcl_component/src/proto/decentraland/common/colors.proto

This file was deleted.

This file was deleted.

13 changes: 0 additions & 13 deletions crates/dcl_component/src/proto/decentraland/common/entity.proto

This file was deleted.

This file was deleted.

52 changes: 0 additions & 52 deletions crates/dcl_component/src/proto/decentraland/common/texture.proto

This file was deleted.

26 changes: 0 additions & 26 deletions crates/dcl_component/src/proto/decentraland/common/vectors.proto

This file was deleted.

This file was deleted.

This file was deleted.

Loading
Loading