Skip to content

Commit

Permalink
fix: revert ci.yml and change artifacts path
Browse files Browse the repository at this point in the history
  • Loading branch information
glihm committed Dec 19, 2023
1 parent 834a95a commit cdc91b8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 6 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ jobs:
with:
fetch-depth: 0
- uses: Swatinem/rust-cache@v2
- run: sozo build --manifest-path examples/spawn-and-move/Scarb.toml
- run: cargo llvm-cov nextest --all-features --lcov --output-path lcov.info
- uses: codecov/codecov-action@v3
with:
Expand Down Expand Up @@ -88,7 +87,6 @@ jobs:
with:
fetch-depth: 0
- uses: Swatinem/rust-cache@v2
- run: sozo build --manifest-path examples/spawn-and-move/Scarb.toml
- run: scripts/clippy.sh

fmt:
Expand All @@ -109,8 +107,8 @@ jobs:
with:
fetch-depth: 0
- uses: Swatinem/rust-cache@v2
- run: sozo build --manifest-path examples/spawn-and-move/Scarb.toml
- run: scripts/docs.sh
- run: >
scripts/docs.sh
test-hurl:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions crates/dojo-world/src/contracts/world.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ pub(crate) mod test;
pub mod abigen {
pub mod world {
use cainome::rs::abigen;
abigen!(WorldContract, "examples/spawn-and-move/target/dev/dojo_examples-world.json");
abigen!(WorldContract, "../../examples/spawn-and-move/target/dev/dojo_examples-world.json");
}

pub mod executor {
use cainome::rs::abigen;
abigen!(ExecutorContract, "examples/spawn-and-move/target/dev/dojo_examples-executor.json");
abigen!(ExecutorContract, "../../examples/spawn-and-move/target/dev/dojo_examples-executor.json");
}
}

Expand Down

0 comments on commit cdc91b8

Please sign in to comment.