You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> By default, the build scripts will create separate DLLs for vendored dependency libraries (e.g. `abseil`). However, if you want to bundle everything into a single DLL, pass `--single-lib`.
185
185
186
+
> [!NOTE]
187
+
> The native sourcebuild currently supports Linux, or Linux-like platforms.
188
+
> macOS and Windows are not handled, as we do not have access to these systems, and working over CI did not turn out feasible.
189
+
> You need to use the toolchained build on these platforms for now.
190
+
> Community help / pull requests to extend platform support would be appreciated.
191
+
186
192
##### cibuildwheel
187
193
188
-
The native sourcebuild can be run through cibuildwheel. For platforms configured in our [`pyproject.toml`](./pyproject.toml), the basic invocation is as simple as p.ex.
194
+
The native sourcebuild can be run through cibuildwheel. For targets configured in our [`pyproject.toml`](./pyproject.toml), the basic invocation is as simple as p.ex.
When creating a new workflow, it is usually desirable to test in a branch first before merging into main.
1020
+
When writing a new workflow, it is usually desirable to test in a branch first before merging into main.
1015
1021
However, new workflows from branches cannot be dispatched from the GitHub Actions panel yet. That's why you'll want to use the [`gh`](https://cli.github.com/) command-line tool, as follows:
1016
1022
```bash
1017
1023
gh workflow run $WORKFLOW_NAME.yaml --ref $MY_BRANCH
@@ -1020,7 +1026,7 @@ If inputs are needed, JSON can be used
1020
1026
```bash
1021
1027
echo'{"my_json_info":1, "my_var":"hello"}'| gh workflow run $WORKFLOW_NAME.yaml --ref $MY_BRANCH --json
0 commit comments