| Commit message (Collapse) | Author | Age | Files | Lines |
| | |
|
| |
|
|
| |
related #122
|
| | |
|
| | |
|
| | |
|
| |
|
|
| |
Gyro is dead. Rest in peace.
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
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.
|
| |
|
|
| |
fixes #111
|
| |
|
|
| |
fixes #84
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
Breaking change: parseEx now counts the number of occurrences of flag
parameters (those with takes_value == .none) and returns the count as a
u8. Users of the library will need to change
if (arg_result.my_flag)
to
if (arg_result.my_flag != 0)
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|
| |
Co-authored-by: Andrew Kelley <andrew@ziglang.org>
|
| |
|
|
| |
update to follow latest for loop syntax
|
| | |
|
| | |
|
| | |
|
| | |
|
| | |
|
| |
|
|
| |
Rename `builtin.Struct.field_type` to `builtin.Struct.type`.
|
| | |
|
| | |
|
| |
|
|
| |
toOwnedSlice() now returns an error union
|
| | |
|
| |
|
|
| |
Instead, cicd will now have a job for every configuration
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Bumps [goto-bus-stop/setup-zig](https://github.com/goto-bus-stop/setup-zig) from 1.3.0 to 2.0.1.
- [Release notes](https://github.com/goto-bus-stop/setup-zig/releases)
- [Changelog](https://github.com/goto-bus-stop/setup-zig/blob/default/CHANGELOG.md)
- [Commits](https://github.com/goto-bus-stop/setup-zig/compare/v1.3.0...v2.0.1)
---
updated-dependencies:
- dependency-name: goto-bus-stop/setup-zig
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <support@github.com>
|
| | |
|
| | |
|
| | |
|
| |
|
|
| |
Syncs with latest zig master version 0.10.0-dev.4117+54854e2ab
|
| |
|
|
|
| |
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.
|
| |
|
|
| |
fixes #79
|
| | |
|
| |
|
|
| |
closes #78
|
| | |
|