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
15 changes: 3 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,6 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0

# Install Nix and use that to run our tests so our environment matches exactly.
- uses: cachix/install-nix-action@v30
Expand All @@ -51,9 +48,6 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0

# Install Nix and use that to run our tests so our environment matches exactly.
- uses: cachix/install-nix-action@v30
Expand All @@ -72,7 +66,7 @@ jobs:
# run: nix develop -c zig build test -Dtarget=wasm32-wasi -fwasmtime --summary all

- name: build all benchmarks and examples
run: nix develop -c zig build -Dexample -Dbench --summary all
run: nix develop -c zig build -Demit-example -Demit-bench --summary all

# Run a full build to ensure that works
- run: nix build
Expand All @@ -85,17 +79,14 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
submodules: recursive
fetch-depth: 0

- name: Install zig
uses: goto-bus-stop/setup-zig@v2
with:
version: 0.13.0
version: 0.14.0

- name: test
run: zig build test --summary all

- name: build all benchmarks and examples
run: zig build -Dexample -Dbench --summary all
run: zig build -Demit-example -Demit-bench --summary all
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ further makes it compatible with any language out there that can communicate
with C APIs).

**Project Status: Stable for most use cases.** libxev is in daily use by
large projects such as [Ghostty](https://ghostty.org),
large projects such as [Ghostty](https://ghostty.org),
[zml](https://github.com/zml/zml), and more. For most use cases, libxev
has been shown to be stable at scale. libxev has a broad featureset and
there are likely less well-used corners of the library, but for most
Expand Down Expand Up @@ -271,7 +271,7 @@ directory.

# Build

Build requires the installation of the Zig 0.13.0. libxev follows stable
Build requires the installation of the Zig 0.14.0. libxev follows stable
Zig releases and generally does not support nightly builds. When a stable
release is imminent we may have a branch that supports it.
**libxev has no other build dependencies.**
Expand Down
Loading