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 422fdaf commit 1d7c885Copy full SHA for 1d7c885
.github/workflows/release.yml
@@ -67,6 +67,15 @@ jobs:
67
sudo apt-get update
68
sudo apt-get install -y gcc-aarch64-linux-gnu
69
70
+ # The Docker runtime is not available by default on macOS runners
71
+ # https://github.com/actions/runner-images/issues/2150
72
+ # https://blog.netnerds.net/2022/11/docker-macos-github-actions/
73
+ - name: Install Docker
74
+ if: runner.os == 'macOS'
75
+ run: |
76
+ brew install docker
77
+ colima start
78
+
79
# For Linux, use custom Docker image with plpgsql_check
80
- name: Build and start PostgreSQL with plpgsql_check
81
if: runner.os == 'macOS' || runner.os == 'Linux'
0 commit comments