added arm64...

Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
This commit is contained in:
Alex A. Naanou 2025-10-18 00:44:12 +03:00
parent 3fe668ea1d
commit 6edb15e1d2
2 changed files with 7 additions and 4 deletions

View File

@ -45,10 +45,10 @@ jobs:
# fixes an issue when running npx sandboxing...
sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0
#- name: MacOS-specific
# if: ${{ matrix.os == 'macos-latest' }}
# run: |
# echo
- name: MacOS-specific
if: ${{ matrix.os == 'macos-latest' }}
run: |
echo
#- name: Env

View File

@ -300,6 +300,9 @@ else
ifeq ($(shell uname -m),x86_64)
ARCH ?= x64
endif
ifeq ($(shell uname -m),arm64)
ARCH ?= arm64
endif
ifneq ($(filter %86,$(shell uname -p)),)
ARCH ?= ia32
endif