如果可能的话,我想在所有平台上测试应该使用 GitHub Actions 连接到 PostgreSQL 和 MySQL 服务器的 CLI:Linux、Windows 和 macOS。
我找到了有关如何运行 Postgresservice
以及如何运行 MySQL 的说明service
,并将它们组合成一个工作流程:
name: Test
on: [push]
jobs:
init_flow:
name: 'Run MySQL and Postgres on ${{ matrix.os }}'
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
# via https://github.com/actions/example-services/blob/master/.github/workflows/postgres-service.yml
services:
postgres:
image: postgres:10.8
env:
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
POSTGRES_DB: postgres
ports:
# will assign a random free host port
- 5432/tcp
# needed because the postgres container does not provide a healthcheck
options: --health-cmd pg_isready --health-interval 10s --health-timeout 5s --health-retries 5
mysql:
image: mysql:5.7
env:
MYSQL_ROOT_PASSWORD: root
ports:
- 3306
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3
steps:
- uses: actions/checkout@v1
- run: node -v
env:
# use localhost for the host here because we are running the job on the VM.
# If we were running the job on in a container this would be postgres
POSTGRES_HOST: localhost
POSTGRES_PORT: ${{ job.services.postgres.ports[5432] }} # get randomly assigned published port
MYSQL_PORT: ${{ job.services.mysql.ports[3306] }}
但这似乎只适用于 Linux,而不适用于 Windows 或 macOS,请参阅 GitHub 上的操作结果:
Windows 在Initialize Containers
with期间失败##[error]Container operation is only supported on Linux
,macOS 甚至在Set up job
with期间失败##[error]File not found: 'docker'
。
GitHub Actionsservices
文档没有提到这只适用于 Linux,但我对容器或 Docker 也不太了解,因此可能会遗漏一些明显的东西。
(顺便说一句,MySQL 和 PostgreSQL 在同一个操作系统上运行并不重要——它们只需要主作业可以访问。)
是否可以使用 Windows 和 macOS 为 GitHub Actions 运行 MySQL 和 PostgreSQL?
如果没有,这里最好的解决方法是什么?