Skip to content

Commit 9b00df4

Browse files
echobtfactorydroid
andauthored
ci(r2): temporarily disable Windows ARM64 from R2 publish (#491)
Remove Windows ARM64 artifact verification and uploads from the R2 publish workflow. This allows the release to proceed without the Windows ARM64 build while we investigate the LLVM/clang issues. Co-authored-by: Droid Agent <droid@factory.ai>
1 parent 1eaef00 commit 9b00df4

1 file changed

Lines changed: 8 additions & 9 deletions

File tree

.github/workflows/publish-r2.yml

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,8 @@ jobs:
9090
"cortex-cli-macos-x64"
9191
"cortex-cli-macos-arm64"
9292
"cortex-cli-windows-x64"
93-
"cortex-cli-windows-arm64"
93+
# Temporarily disabled: Windows ARM64 build has LLVM/clang issues
94+
# "cortex-cli-windows-arm64"
9495
)
9596
9697
for artifact in "${EXPECTED_ARTIFACTS[@]}"; do
@@ -127,7 +128,8 @@ jobs:
127128
done
128129
129130
# Windows platforms - artifacts are already .zip
130-
for mapping in windows-x86_64:cortex-cli-windows-x64 windows-aarch64:cortex-cli-windows-arm64; do
131+
# Temporarily disabled: Windows ARM64 build has LLVM/clang issues
132+
for mapping in windows-x86_64:cortex-cli-windows-x64; do
131133
IFS=':' read -r platform artifact <<< "$mapping"
132134
133135
ARCHIVE=$(find "artifacts/$artifact" -name "*.zip" | head -1)
@@ -170,7 +172,8 @@ jobs:
170172
echo "$platform: $(cat dist/$platform/cortex.tar.gz.sha256)"
171173
done
172174
173-
for platform in windows-x86_64 windows-aarch64; do
175+
# Temporarily disabled: Windows ARM64 build has LLVM/clang issues
176+
for platform in windows-x86_64; do
174177
sha256sum "dist/$platform/cortex.zip" | awk '{print $1 " cortex.zip"}' > "dist/$platform/cortex.zip.sha256"
175178
echo "$platform: $(cat dist/$platform/cortex.zip.sha256)"
176179
done
@@ -185,7 +188,8 @@ jobs:
185188
rclone copy "dist/$platform/cortex.tar.gz.sha256" "r2:cortex-software/assets/$platform/$VERSION/" --progress
186189
done
187190
188-
for platform in windows-x86_64 windows-aarch64; do
191+
# Temporarily disabled: Windows ARM64 build has LLVM/clang issues
192+
for platform in windows-x86_64; do
189193
echo "Uploading $platform..."
190194
rclone copy "dist/$platform/cortex.zip" "r2:cortex-software/assets/$platform/$VERSION/" --progress
191195
rclone copy "dist/$platform/cortex.zip.sha256" "r2:cortex-software/assets/$platform/$VERSION/" --progress
@@ -234,11 +238,6 @@ jobs:
234238
"url": "$BASE_URL/windows-x86_64/$VERSION/cortex.zip",
235239
"sha256": "${{ steps.checksums.outputs.windows-x86_64 }}",
236240
"size": $(stat -c%s dist/windows-x86_64/cortex.zip 2>/dev/null || echo 0)
237-
},
238-
"windows-aarch64": {
239-
"url": "$BASE_URL/windows-aarch64/$VERSION/cortex.zip",
240-
"sha256": "${{ steps.checksums.outputs.windows-aarch64 }}",
241-
"size": $(stat -c%s dist/windows-aarch64/cortex.zip 2>/dev/null || echo 0)
242241
}
243242
}
244243
}

0 commit comments

Comments
 (0)