Skip to content

Commit 795dd05

Browse files
author
Claude
committed
Consolidate arm64 and aarch64 naming to aarch64
ARM's 64-bit architecture is officially called AArch64. Apple calls it "arm64" on macOS, but they're the same instruction set. Using aarch64 consistently makes the directory structure clearer. Changes: - Renamed build-osx-arm64 to build-osx-aarch64 - Changed ARCH_NAME from arm64 to aarch64 for Darwin build - Updated release job dependencies New directory structure: ./static ├── aarch64 │ ├── Darwin │ │ └── libasyncprocess.a │ └── Linux │ └── libasyncprocess.a └── x86_64 ├── Darwin │ └── libasyncprocess.a └── Linux └── libasyncprocess.a
1 parent bc273ca commit 795dd05

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/build.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -97,15 +97,15 @@ jobs:
9797
name: ${{ env.RESULT_NAME }}
9898
path: ${{ env.RESULT_PATH }}
9999

100-
build-osx-arm64:
101-
runs-on: macos-14 # macOS 14 runs on Apple Silicon (arm64)
100+
build-osx-aarch64:
101+
runs-on: macos-14 # macOS 14 runs on Apple Silicon (aarch64/arm64)
102102
timeout-minutes: 90
103103
env:
104104
OS_NAME: Darwin
105-
ARCH_NAME: arm64
105+
ARCH_NAME: aarch64
106106
LIB_NAME: libasyncprocess.a
107-
RESULT_NAME: result-osx-arm64
108-
RESULT_PATH: result-osx-arm64
107+
RESULT_NAME: result-osx-aarch64
108+
RESULT_PATH: result-osx-aarch64
109109
RESULT_PATH_SUB: result-async/static
110110
steps:
111111
- uses: actions/checkout@v4
@@ -189,7 +189,7 @@ jobs:
189189

190190
release:
191191
runs-on: ubuntu-latest
192-
needs: [build-linux-x86_64, build-linux-aarch64, build-osx-arm64, build-osx-x86_64]
192+
needs: [build-linux-x86_64, build-linux-aarch64, build-osx-aarch64, build-osx-x86_64]
193193
if: startsWith(github.ref, 'refs/tags/')
194194
steps:
195195
- name: Download all artifacts

0 commit comments

Comments
 (0)