File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6666 include :
6767 - os : macos-latest
6868 target : macos-arm64
69+ - os : macos-latest
70+ target : macos-x86_64
6971 - os : ubuntu-latest
7072 target : linux-x86_64
7173 - os : windows-latest
9294 shell : bash
9395 run : |
9496 chmod +x scripts/install-test.sh
95- VERSION=${{ steps.version.outputs.version }} LOCAL_BINARY_DIR=${{ github.workspace }} /dist/release ./scripts/install-test.sh
97+ VERSION=${{ steps.version.outputs.version }} LOCAL_BINARY_DIR="$(pwd) /dist/release" ./scripts/install-test.sh
9698
9799 - name : Verify installation
98100 shell : bash
Original file line number Diff line number Diff line change @@ -314,7 +314,11 @@ if [ "$SKIP_DOWNLOAD" = false ]; then
314314fi
315315setup_path
316316verify_installation
317- check_docker
317+
318+ # Skip docker check in CI/test mode
319+ if [ -z " $LOCAL_BINARY_DIR " ]; then
320+ check_docker
321+ fi
318322
319323echo " "
320324echo -e " ${CYAN} "
You can’t perform that action at this time.
0 commit comments