ci: add windows build #350
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '10 20 * * *' | |
pull_request: | |
paths: | |
- "**.zig" | |
- ".github/**" | |
push: | |
branches: | |
- main | |
paths: | |
- "**.zig" | |
- ".github/**" | |
jobs: | |
examples: | |
timeout-minutes: 10 | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [windows-latest] | |
zig: [0.12.0, master] | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: goto-bus-stop/setup-zig@v2 | |
with: | |
version: ${{ matrix.zig }} | |
- name: Start services | |
uses: ikalnytskyi/action-setup-postgres@v6 | |
with: | |
username: postgres | |
password: postgres | |
database: postgres | |
port: 5432 | |
- name: mysql for ubuntu | |
uses: mirromutth/mysql-action@v1.1 | |
if: matrix.os == 'ubuntu-latest' | |
with: | |
character set server: 'utf8' | |
collation server: 'utf8_general_ci' | |
mysql version: '8.3' | |
mysql database: 'public' | |
mysql root password: 'password' | |
mysql user: 'developer' | |
- name: Install deps | |
run: | | |
make install-deps | |
- name: MySQL for macOS | |
if: matrix.os == 'macos-latest' | |
run: | | |
node .github/ci.js | |
prefix=$(brew --prefix) | |
echo "PKG_CONFIG_PATH=${prefix}/opt/sqlite/lib/pkgconfig:${prefix}/opt/libpq/lib/pkgconfig:${prefix}/opt/mysql-client/lib/pkgconfig" >> ${GITHUB_ENV} | |
- name: MySQL for Windows | |
if : matrix.os == 'windows-latest' | |
run: | | |
choco install mysqlclient | |
- name: Run examples(Unix) | |
run: | | |
pkg-config --libs --cflags libpq mysqlclient | |
zig fmt --check src/ | |
if [ `uname -s` = "Linux" ]; then | |
zig build | |
zig build run-all --summary all | |
else if [ `uname -s` = "Darwin" ]; then | |
TARGET="aarch64-macos" | |
zig build -Dtarget="${TARGET}" | |
zig build run-all -Dtarget="${TARGET}" --summary all | |
else if [ `uname -s` = "Windows_NT" ]; then | |
zig build | |
zig build run-all --summary all | |
fi |