summaryrefslogtreecommitdiff
path: root/build.zig (follow)
Commit message (Collapse)AuthorAgeFilesLines
* docs: Add subcommand exampleGravatar Jimmi Holst Christensen2024-10-241-1/+3
|
* refactor: Always access using full namespaceGravatar Jimmi Holst Christensen2024-10-221-2/+2
| | | | This is my new preferred style of programming Zig :)
* Update to newest version of zigGravatar Jimmi Holst Christensen2024-07-171-1/+1
|
* Update for latest zigGravatar Beyley Thomas2024-05-301-1/+1
|
* Use b.path instead of manually setting the fieldsGravatar Jimmi Holst Christensen2024-05-161-3/+3
|
* Updated `build.zig` to support Zig 0.13.0-dev.211+6a65561e3Gravatar Brook J2024-05-161-3/+3
|
* Update to latest masterGravatar Krzysztof Wolicki2024-01-051-5/+5
|
* Add autodoc websiteGravatar Abhinav Gupta2024-01-021-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.
* Update to latest zig (4d7dd1689)0.7.0Gravatar Marcus Wågberg2023-08-031-1/+1
|
* Update to newest version of zigGravatar Jimmi Holst Christensen2023-04-141-4/+6
|
* Update build script to actually run the testsGravatar Jimmi Holst Christensen2023-03-201-1/+1
|
* Update to newest version of zigGravatar Jimmi Holst Christensen2023-03-191-15/+20
|
* build: use new addModule() API which now returns a ModuleGravatar Travis Staloch2023-03-061-2/+2
|
* Mode addModule to the topGravatar Jimmi Holst Christensen2023-03-011-2/+2
|
* build: expose 'clap' module for dependeees (#92)Gravatar travisstaloch2023-02-261-0/+2
| | | Co-authored-by: Andrew Kelley <andrew@ziglang.org>
* Update to latest version of zigGravatar Jimmi Holst Christensen2023-02-051-12/+15
|
* Update to newest version of zigGravatar Jimmi Holst Christensen2022-12-091-2/+0
|
* Don't iterate all configs in build scriptGravatar Jimmi Holst Christensen2022-11-151-21/+8
| | | | Instead, cicd will now have a job for every configuration
* Fix zig-clap for new default compilerGravatar Jimmi Holst Christensen2022-08-251-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.
* Allow for clap to parse argument values into typesGravatar Jimmi Holst Christensen2022-03-091-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.
* Fix regression in last commitGravatar Komari Spaghetti2021-10-111-1/+0
| | | | | The importing of builtin was already fixed, so the latest commit applied this fix again, which caused problems
* zig master updatesGravatar Asherah Connor2021-10-111-0/+1
|
* Merge branch 'master' into zig-masterGravatar Komari Spaghetti2021-10-091-1/+0
|\
| * Fix uses of builtinGravatar Komari Spaghetti2021-10-091-1/+0
| |
| * Fix all new compiler errors from zig masterGravatar Komari Spaghetti2021-06-241-0/+1
| |
* | Fix all new compiler errors from zig masterGravatar Komari Spaghetti2021-06-241-0/+1
| |
* | Build buildscript with latest version of zigGravatar Komari Spaghetti2021-06-241-1/+1
|/
* Update to latest zig in preperation for 0.8.0Gravatar Komari Spaghetti2021-05-261-14/+4
|
* Modernize codebaseGravatar Komari Spaghetti2021-05-081-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
* Don't format in build scriptGravatar Jimmi Holst Christensen2020-11-291-8/+0
| | | | | We let CI catch unformatted code and let users run fmt in the best way for them
* Deprecate ComptimeClap in favor of parseExv0.3.0Gravatar Jimmi Holst Christensen2020-11-101-2/+1
|
* Merge branch 'master' into zig-masterGravatar Jimmi Holst Christensen2020-11-101-0/+3
|\
| * Fix expected type error on 32 bit systemsGravatar Jimmi Holst Christensen2020-08-151-0/+3
| | | | | | | | fixes #23
* | add build step idGravatar Asherah Connor2020-08-221-1/+1
|/
* Run zig fmt on buildv0.2.0Gravatar Jimmi Holst Christensen2020-04-181-0/+3
|
* Merge branch 'master' into zig-masterGravatar Jimmi Holst Christensen2020-04-181-0/+2
|\
| * Add clap.usageGravatar Jimmi Holst Christensen2020-03-051-0/+2
| |
* | rebuild readmeGravatar joachimschmidt5572020-04-111-1/+1
| |
* | update to latest zigGravatar joachimschmidt5572020-04-111-1/+1
| |
* | update for latest zigGravatar dbandstra2020-03-011-1/+1
| |
* | update for latest zig (varargs is no more)Gravatar dbandstra2019-12-091-3/+2
| |
* | update for latest zigGravatar dbandstra2019-12-011-1/+1
|/
* Add clap.parse as the simplest way of using the libGravatar Jimmi Holst Christensen2019-11-271-3/+5
|
* fmt, mv src/ clap/ and run fmt on buildGravatar Jimmi Holst Christensen2019-10-061-0/+5
|
* make help message look more like other toolsGravatar Jimmi Holst Christensen2019-08-171-13/+13
|
* adds parseParamGravatar Jimmi Holst Christensen2019-08-171-0/+1
| | | | a less verbose way of getting a Param(Help).
* Embed examples in README during buildGravatar Jimmi HC2019-06-211-0/+27
| | | | fixes #11
* updated to newest version of zigGravatar Jimmi HC2019-06-121-4/+4
|
* Changed Names.prefix to Names.bothGravatar Jimmi HC2018-11-151-2/+2
|
* Restructured and make StreamingClap simplerGravatar Jimmi Holst Christensen2018-11-141-0/+48
| | | | * Also added a ComptimeClap