Skip to content

Commit

Permalink
changes working on other repo
Browse files Browse the repository at this point in the history
  • Loading branch information
matzayonc committed Dec 1, 2023
1 parent 6242f7f commit f6020d4
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 8 deletions.
5 changes: 3 additions & 2 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.245.2/containers/rust/.devcontainer/base.Dockerfile

# [Choice] Debian OS version (use bullseye on local arm64/Apple Silicon): buster, bullseye
# [Choice] Debian OS version (use 0-bullseye on local arm64/Apple Silicon): 0-buster, 0-bullseye bookworm
# Only bookworm works now dojoup
ARG VARIANT
FROM mcr.microsoft.com/vscode/devcontainers/rust:0-${VARIANT}
FROM mcr.microsoft.com/vscode/devcontainers/rust:${VARIANT}

# Install additional packages
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \
Expand Down
4 changes: 2 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// https://github.com/microsoft/vscode-dev-containers/tree/v0.245.2/containers/rust
{
"name": "Rust",
"image": "ghcr.io/dojoengine/dojo-dev:4979471 ",
"image": "ghcr.io/matzayonc/dojo-dev:b838a3f7a840dd83b3ab5054b5bde2b6693d0c74",
"runArgs": [
"--cap-add=SYS_PTRACE",
"--security-opt",
Expand Down Expand Up @@ -41,5 +41,5 @@
"remoteEnv": {
"PATH": "${containerEnv:PATH}:/workspace/dojo/target/release:/home/vscode/.dojo/bin"
},
"postCreateCommand": "dojoup"
"postCreateCommand": "dojoup/dojoup && cargo install cargo-nextest"
}
2 changes: 1 addition & 1 deletion .github/workflows/devcontainer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
file: .devcontainer/Dockerfile
tags: ghcr.io/${{ github.repository }}-dev:latest,ghcr.io/${{ github.repository }}-dev:${{ env.DOCKER_TAG }}
build-args: |
VARIANT=bullseye
VARIANT=bookworm
platforms: linux/amd64,linux/arm64
cache-from: type=registry,ref=ghcr.io/${{ github.repository }}-dev:latest
cache-to: type=registry,ref=ghcr.io/${{ github.repository }}-dev:cache
Expand Down
2 changes: 1 addition & 1 deletion crates/torii/graphql/src/tests/types-test/Scarb.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version = 1

[[package]]
name = "dojo"
version = "0.3.13"
version = "0.3.14"
dependencies = [
"dojo_plugin",
]
Expand Down
4 changes: 2 additions & 2 deletions examples/spawn-and-move/Scarb.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ version = 1

[[package]]
name = "dojo"
version = "0.3.12"
version = "0.3.14"
dependencies = [
"dojo_plugin",
]

[[package]]
name = "dojo_examples"
version = "0.3.12"
version = "0.3.14"
dependencies = [
"dojo",
]
Expand Down

0 comments on commit f6020d4

Please sign in to comment.