chore: fix linux(aarch64) build

This commit is contained in:
tsuiyuenhong 2022-06-21 18:44:06 +08:00
parent 993d1a8a27
commit 27bd4bb242
3 changed files with 11 additions and 8 deletions

9
.gitignore vendored
View file

@ -20,4 +20,11 @@ node_modules
**/.DS_Store **/.DS_Store
**/src/protobuf **/src/protobuf
**/resources/proto **/resources/proto
frontend/.vscode/*
!frontend/.vscode/settings.json
!frontend/.vscode/tasks.json
!frontend/.vscode/launch.json
!frontend/.vscode/extensions.json
!frontend/.vscode/*.code-snippets

View file

@ -49,7 +49,7 @@
"linux": { "linux": {
"options": { "options": {
"env": { "env": {
"FLOWY_DEV_ENV": "Linux-x86" "FLOWY_DEV_ENV": "Linux"
} }
} }
}, },

View file

@ -16,12 +16,8 @@ rustup show
case "$FLOWY_DEV_ENV" in case "$FLOWY_DEV_ENV" in
Linux-aarch64) Linux)
cargo make --profile development-linux-aarch64 flowy-sdk-dev cargo make --profile "development-linux-$(uname -m)" flowy-sdk-dev
;;
Linux-x86)
cargo make --profile development-linux-x86 flowy-sdk-dev
;; ;;
macOS) macOS)