Skip to content

Commit

Permalink
feat: add v0.5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
markjung96 committed Dec 20, 2024
1 parent b3a7cf3 commit c5d08fb
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
28 changes: 28 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -137,3 +137,31 @@ services:
memory: "1G"
depends_on:
- amd_cargo_stylus_v0.5.4

amd_cargo_stylus_v0.5.6:
build:
context: .
dockerfile: Dockerfile.amd
args:
GIT_TAG: v0.5.6
image: amd_cargo_stylus_v0.5.6
container_name: amd_cargo_stylus_v0.5.6
platform: linux/amd64
ports:
- "8156:8080"
volumes:
- ./project:/workspace
environment:
- CARGO_TARGET_DIR=/cargo-target
stdin_open: true
tty: true
deploy:
resources:
limits:
cpus: "2.0"
memory: "2G"
reservations:
cpus: "1.0"
memory: "1G"
depends_on:
- amd_cargo_stylus_v0.5.5
7 changes: 6 additions & 1 deletion install.arm.sh
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,14 @@ cargo install --path main --root ~/.cargo/v0.5.4-welldone
git checkout v0.5.5-welldone
cargo install --path main --root ~/.cargo/v0.5.5-welldone

# v0.5.6 설치
git checkout v0.5.6-welldone
cargo install --path main --root ~/.cargo/v0.5.6-welldone

# 설치된 경로 출력
echo "v0.5.1-welldone: ~/.cargo/v0.5.1-welldone/bin/cargo-stylus"
echo "v0.5.2-welldone: ~/.cargo/v0.5.2-welldone/bin/cargo-stylus"
echo "v0.5.3-welldone: ~/.cargo/v0.5.3-welldone/bin/cargo-stylus"
echo "v0.5.4-welldone: ~/.cargo/v0.5.4-welldone/bin/cargo-stylus"
echo "v0.5.5-welldone: ~/.cargo/v0.5.5-welldone/bin/cargo-stylus"
echo "v0.5.5-welldone: ~/.cargo/v0.5.5-welldone/bin/cargo-stylus"
echo "v0.5.6-welldone: ~/.cargo/v0.5.6-welldone/bin/cargo-stylus"

0 comments on commit c5d08fb

Please sign in to comment.