summaryrefslogtreecommitdiff
path: root/build.zig (unfollow)
Commit message (Collapse)AuthorFilesLines
2024-07-17Update to newest version of zigGravatar Jimmi Holst Christensen1-1/+1
2024-05-30Update for latest zigGravatar Beyley Thomas1-1/+1
2024-05-16Use b.path instead of manually setting the fieldsGravatar Jimmi Holst Christensen1-3/+3
2024-05-16Updated `build.zig` to support Zig 0.13.0-dev.211+6a65561e3Gravatar Brook J1-3/+3
2024-01-05Update to latest masterGravatar Krzysztof Wolicki1-5/+5
2024-01-02Add autodoc websiteGravatar Abhinav Gupta1-0/+8
This adds a `zig build docs` step that builds the documentation website and writes it to zig-out/docs. It further includes a GitHub Workflow that publishes this website to GitHub Pages. The GitHub Workflow is divided into two jobs: - build: builds the documentation and uploads it - publish: downloads the documentation and publishes it These are separate jobs to minimize permissions available to the build job. This workflow runs on two events: - after every push to master - `workflow_dispatch`: this allows manually running the workflow from its *Actions* page if something went wrong --- **Important pre-merge steps:** If this PR is accepted, the following steps should be taken before merging the PR: 1. Go to **Settings** for the repository 2. Select **Pages** on the left under *Code and automation* 3. Under *Build and deployment* set **Source** to **GitHub Actions** 4. Merge the PR. If the steps are missed, the PR will merge just fine, but the docs job will fail immediately on merge. This can be remedied by following steps 1-3 above, and either adding a new commit on master, or manually firing the workflow from the Actions > API Reference page.
2023-08-03Update to latest zig (4d7dd1689)0.7.0Gravatar Marcus Wågberg1-1/+1
2023-04-14Update to newest version of zigGravatar Jimmi Holst Christensen1-4/+6
2023-03-20Update build script to actually run the testsGravatar Jimmi Holst Christensen1-1/+1
2023-03-19Update to newest version of zigGravatar Jimmi Holst Christensen1-15/+20
2023-03-06build: use new addModule() API which now returns a ModuleGravatar Travis Staloch1-2/+2
2023-03-01Mode addModule to the topGravatar Jimmi Holst Christensen1-2/+2
2023-02-26build: expose 'clap' module for dependeees (#92)Gravatar travisstaloch1-0/+2
Co-authored-by: Andrew Kelley <andrew@ziglang.org>
2023-02-05Update to latest version of zigGravatar Jimmi Holst Christensen1-12/+15
2022-12-09Update to newest version of zigGravatar Jimmi Holst Christensen1-2/+0
2022-11-15Don't iterate all configs in build scriptGravatar Jimmi Holst Christensen1-21/+8
Instead, cicd will now have a job for every configuration
2022-08-25Fix zig-clap for new default compilerGravatar Jimmi Holst Christensen1-9/+15
Also enable test suit for both stage 1 and stage 2, to ensure we don't break things for people who haven't switched yet.
2022-03-09Allow for clap to parse argument values into typesGravatar Jimmi Holst Christensen1-1/+1
This changes - `.flag`, `.option`, `.options` and `.positionals` are now just fields you access on the result of `parse` and `parseEx`. - `clap.ComptimeClap` has been removed. - `clap.StreamingClap` is now called `clap.streaming.Clap` - `parse` and `parseEx` now takes a `value_parsers` argument that provides the parsers to parse values. - Remove `helpEx`, `helpFull`, `usageEx` and `usageFull`. They now just expect `Id` to have methods for getting the description and value texts.
2021-10-11Fix regression in last commitGravatar Komari Spaghetti1-1/+0
The importing of builtin was already fixed, so the latest commit applied this fix again, which caused problems
2021-10-11zig master updatesGravatar Asherah Connor1-0/+1
2021-10-09Fix uses of builtinGravatar Komari Spaghetti1-1/+0
2021-06-24Fix all new compiler errors from zig masterGravatar Komari Spaghetti1-0/+1
2021-06-24Fix all new compiler errors from zig masterGravatar Komari Spaghetti1-0/+1
2021-06-24Build buildscript with latest version of zigGravatar Komari Spaghetti1-1/+1
2021-05-26Update to latest zig in preperation for 0.8.0Gravatar Komari Spaghetti1-14/+4
2021-05-08Modernize codebaseGravatar Komari Spaghetti1-2/+2
* Better naming for variables * Follow naming style of enums * Use `writer()` instead of `outStream()` * Change many initializers to be a one liner * Don't explicitly initialize fields to their default value
2021-01-10zig master updatesGravatar Asherah Connor1-1/+1
2020-11-29Don't format in build scriptGravatar Jimmi Holst Christensen1-8/+0
We let CI catch unformatted code and let users run fmt in the best way for them
2020-11-10Deprecate ComptimeClap in favor of parseExv0.3.0Gravatar Jimmi Holst Christensen1-2/+1
2020-08-22add build step idGravatar Asherah Connor1-1/+1
2020-08-15Fix expected type error on 32 bit systemsGravatar Jimmi Holst Christensen1-0/+3
fixes #23
2020-04-18Run zig fmt on buildv0.2.0Gravatar Jimmi Holst Christensen1-0/+3
2020-04-11rebuild readmeGravatar joachimschmidt5571-1/+1
2020-04-11update to latest zigGravatar joachimschmidt5571-1/+1
2020-03-05Add clap.usageGravatar Jimmi Holst Christensen1-0/+2
2020-03-01update for latest zigGravatar dbandstra1-1/+1
2019-12-09update for latest zig (varargs is no more)Gravatar dbandstra1-3/+2
2019-12-01update for latest zigGravatar dbandstra1-1/+1
2019-11-27Add clap.parse as the simplest way of using the libGravatar Jimmi Holst Christensen1-3/+5
2019-10-06fmt, mv src/ clap/ and run fmt on buildGravatar Jimmi Holst Christensen1-0/+5
2019-08-17make help message look more like other toolsGravatar Jimmi Holst Christensen1-13/+13
2019-08-17adds parseParamGravatar Jimmi Holst Christensen1-0/+1
a less verbose way of getting a Param(Help).
2019-06-21Embed examples in README during buildGravatar Jimmi HC1-0/+27
fixes #11
2019-06-12updated to newest version of zigGravatar Jimmi HC1-4/+4
2018-11-15Changed Names.prefix to Names.bothGravatar Jimmi HC1-2/+2
2018-11-14Restructured and make StreamingClap simplerGravatar Jimmi Holst Christensen1-0/+48
* Also added a ComptimeClap
2018-09-06Removed the extended api. Refactored testsGravatar Jimmi Holst Christensen1-42/+0
2018-06-19Updated to newest version of zigGravatar Jimmi HC1-3/+2
2018-06-08Removed the settings paramGravatar Jimmi HC1-4/+1
2018-06-08Updated to newest pointer syntaxGravatar Jimmi HC1-1/+1