Skip to repository content19 lines · 1.4 KB · toml
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T00:50:34.197Z Public web read
NIP-34 coordinate
30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omegaMaintainersHidden in public view
References2 branches · 1 tag
Read-only clone
git clone https://openagents.com/git/tenant.openagents/omega.gitBrowse files
ci-config.toml
1# This config is different from config.toml in this directory, as the latter is recognized by Cargo.
2# This file is placed in ./../.cargo/config.toml on CI runs. Cargo then merges Zeds .cargo/config.toml with ./../.cargo/config.toml
3# with preference for settings from Zeds config.toml.
4# TL;DR: If a value is set in both ci-config.toml and config.toml, config.toml value takes precedence.
5# Arrays are merged together though. See: https://doc.rust-lang.org/cargo/reference/config.html#hierarchical-structure
6# The intent for this file is to configure CI build process with a divergance from Zed developers experience; for example, in this config file
7# we use `-D warnings` for rustflags (which makes compilation fail in presence of warnings during build process). Placing that in developers `config.toml`
8# would be inconvenient.
9# The reason for not using the RUSTFLAGS environment variable is that doing so would override all the settings in the config.toml file, even if the contents of the latter are completely nonsensical. See: https://github.com/rust-lang/cargo/issues/5376
10# Here, we opted to use `[target.'cfg(all())']` instead of `[build]` because `[target.'**']` is guaranteed to be cumulative.
11[target.'cfg(all())']
12rustflags = ["-D", "warnings"]
13
14# We don't need fullest debug information for dev stuff (tests etc.) in CI.
15[profile.dev]
16debug = "limited"
17
18
19