Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: CI

on:
push:
branches: [main]
pull_request:
workflow_dispatch:

jobs:
build-and-test:
runs-on: macos-15
steps:
- uses: actions/checkout@v4

- uses: mlugg/setup-zig@v2
with:
version: 0.14.1

# Pinned to macos-15 rather than macos-latest. macos-latest now ships
# Xcode 26.5, whose SDK Zig 0.14.1 cannot link against: every libc
# symbol comes out undefined, and even the build runner fails to link.
# Setting SDKROOT does not help, since the SDK itself is the problem.
- name: Report toolchain
run: |
xcodebuild -version
echo "SDK: $(xcrun --show-sdk-path)"

- name: Build
run: zig build

# Drives the built plugin through the raw VST3 C ABI.
- name: Test
run: zig build test
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# 馃幍 Danzig VST3 Framework

[![CI](https://github.com/godofecht/danzig/actions/workflows/ci.yml/badge.svg)](https://github.com/godofecht/danzig/actions/workflows/ci.yml)
[![Zig](https://img.shields.io/badge/zig-0.14.1-f7a41d)](https://ziglang.org/)

A modern, lightweight VST3 plugin development framework built in Zig with zero external dependencies.

## Project Status
Expand Down
Loading