Skip to content

Commit

Permalink
chore(ci): ensure testing of macos-x64 app
Browse files Browse the repository at this point in the history
  • Loading branch information
YOU54F committed May 21, 2024
1 parent 53f1b7e commit 6bd526d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-test-cross.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,11 +87,11 @@ jobs:
- name: test debian ${{ matrix.arch }} package
if: ${{ matrix.debian == true && matrix.arch == 'amd64' }}
run: docker run --platform=linux/${{ matrix.arch }} --rm -v $(pwd):/app debian /bin/bash -c 'apt update && apt install -y libicu-dev && chmod +x ./app/artifact/explore-cli-linux-x64 && ./app/artifact/explore-cli-linux-x64 --version'
- name: test 'macos-14'
if: ${{ matrix.os == 'macos-14' }}
- name: test 'macos-14-arm'
if: ${{ matrix.os == 'macos-14' && matrix.arch == 'arm64' }}
run: chmod +x artifact/explore-cli-osx-arm64 && artifact/explore-cli-osx-arm64 --version
- name: test 'macos-12'
if: ${{ matrix.os == 'macos-12' }}
- name: test 'macos-14-amd'
if: ${{ matrix.os == 'macos-14' && matrix.arch == 'amd64' }}
run: chmod +x artifact/explore-cli-osx-x64 && artifact/explore-cli-osx-x64 --version
- name: test 'windows-latest'
if: ${{ matrix.os == 'windows-latest' }}
Expand Down

0 comments on commit 6bd526d

Please sign in to comment.