We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8c5753 commit 5c9ea6cCopy full SHA for 5c9ea6c
.github/workflows/integration-test.yml
@@ -42,11 +42,17 @@ jobs:
42
python-version: 3.11
43
44
- name: Docker setup (macos only)
45
- if: ${{ runner.os == 'macOS' }} # && ${{ github.event_name == 'schedule' }}
+ if: ${{ runner.os == 'macOS' }} && ${{ github.event_name == 'schedule' }}
46
run: |
47
- brew install colima
48
- brew install docker
49
- colima start
+ arch=$(uname -m)
+ if [ "$arch" = "arm64" ]; then
+ echo "Installing Colima and Docker for macOS ARM64"
50
+ brew install colima
51
+ brew install docker
52
+ colima start
53
+ else
54
+ echo "Skipping Docker setup on non-macOS runner"
55
+ fi
56
57
- name: Set up Project
58
0 commit comments