Skip to content

Commit ba1525e

Browse files
committed
fix: only test Linux binary in GitHub Actions
- Linux runner can't execute macOS/ARM binaries - Restricts binary testing to linux amd64 only - Other platforms are verified by successful build
1 parent fda7717 commit ba1525e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build-and-release-cli.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,8 @@ jobs:
111111
ls -la bin/
112112
file "bin/${OUTPUT_NAME}" || true
113113
114-
- name: Test binary (Linux/macOS only)
115-
if: matrix.goos != 'windows'
114+
- name: Test binary (Linux only)
115+
if: matrix.goos == 'linux' && matrix.goarch == 'amd64'
116116
run: |
117117
cd apps/cli
118118
chmod +x "bin/asyncstatus-${{ matrix.suffix }}"

0 commit comments

Comments
 (0)