Skip to content

Commit

Permalink
Merge pull request v2rayA#1563 from ngc7331/docker-riscv64
Browse files Browse the repository at this point in the history
chore(docker,ci): add riscv64 to docker build
  • Loading branch information
MarksonHon authored Nov 24, 2024
2 parents a4efc53 + 1a8d48d commit c45063a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -734,7 +734,7 @@ jobs:
context: .
builder: ${{ steps.buildx.outputs.name }}
file: install/docker/Dockerfile.Action
platforms: linux/arm,linux/arm64,linux/amd64
platforms: linux/arm,linux/arm64,linux/amd64,linux/riscv64
push: true
tags: |
${{ steps.prep.outputs.image }}:${{ steps.prep.outputs.tag }}
Expand Down
4 changes: 4 additions & 0 deletions install/docker/docker_helper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ case "$(arch)" in
v2ray_arch="arm64-v8a"
v2raya_arch="arm64"
;;
riscv64)
v2ray_arch="riscv64"
v2raya_arch="riscv64"
;;
*)
;;
esac
Expand Down

0 comments on commit c45063a

Please sign in to comment.