Merge branch 'target_env_musl' into 'main'
Adding musl target env See merge request veilid/veilid!177
This commit is contained in:
commit
19f545ff92
74
RELEASING.md
74
RELEASING.md
@ -20,7 +20,7 @@ Releases happen via a CI/CD pipeline. The release process flows as follows:
|
|||||||
|
|
||||||
2.1 Update your local copy of `main` to mirror the newly merged upstream `main`
|
2.1 Update your local copy of `main` to mirror the newly merged upstream `main`
|
||||||
|
|
||||||
2.2 Ensure the (CHANGELOG)[./CHANGELOG.md] is updated
|
2.2 Ensure the [CHANGELOG](./CHANGELOG.md) is updated
|
||||||
|
|
||||||
2.3 Activate your bumpversion Python venv (see bumpversion setup section for details)
|
2.3 Activate your bumpversion Python venv (see bumpversion setup section for details)
|
||||||
|
|
||||||
@ -40,6 +40,14 @@ Releases happen via a CI/CD pipeline. The release process flows as follows:
|
|||||||
|
|
||||||
Git tags serve as a historical record of what repo versions were successfully released at which version numbers.
|
Git tags serve as a historical record of what repo versions were successfully released at which version numbers.
|
||||||
|
|
||||||
|
## Publish to crates.io
|
||||||
|
|
||||||
|
1. Configure the crates.io credentials, if not already accomplished.
|
||||||
|
2. Execute `cargo publish -p veilid-tools --dry-run`
|
||||||
|
3. Execute `cargo publish -p veilid-tools`
|
||||||
|
4. Execute `cargo publish -p veilid-core --dry-run`
|
||||||
|
5. Execute `cargo publish -p veilid-core`
|
||||||
|
|
||||||
## Publish to Pypi
|
## Publish to Pypi
|
||||||
|
|
||||||
1. Change directory to veilid-python
|
1. Change directory to veilid-python
|
||||||
@ -53,11 +61,12 @@ Occasionally a release will happen that needs to be reverted. This is done manua
|
|||||||
|
|
||||||
## Released Artifacts
|
## Released Artifacts
|
||||||
|
|
||||||
### Rust Crates:
|
### Rust Crates
|
||||||
- [x] __veilid-tools__ [**Tag**: `veilid-tools-v0.0.0`]
|
|
||||||
|
- [x] __veilid-tools__ [__Tag__: `veilid-tools-v0.0.0`]
|
||||||
> An assortment of useful components used by the other Veilid crates.
|
> An assortment of useful components used by the other Veilid crates.
|
||||||
> Released to crates.io when its version number is changed in `Cargo.toml`
|
> Released to crates.io when its version number is changed in `Cargo.toml`
|
||||||
- [x] __veilid-core__ [**Tag**: `veilid-core-v0.0.0`]
|
- [x] __veilid-core__ [__Tag__: `veilid-core-v0.0.0`]
|
||||||
> The base rust crate for Veilid's logic
|
> The base rust crate for Veilid's logic
|
||||||
> Released to crates.io when its version number is changed in `Cargo.toml`
|
> Released to crates.io when its version number is changed in `Cargo.toml`
|
||||||
- [ ] __veilid-server__
|
- [ ] __veilid-server__
|
||||||
@ -73,47 +82,59 @@ Occasionally a release will happen that needs to be reverted. This is done manua
|
|||||||
> The Dart-FFI native interface to the Veilid API
|
> The Dart-FFI native interface to the Veilid API
|
||||||
> This is currently built by the Flutter plugin `veilid-flutter` and not released.
|
> This is currently built by the Flutter plugin `veilid-flutter` and not released.
|
||||||
|
|
||||||
### Python Packages:
|
### Python Packages
|
||||||
- [x] __veilid-python__ [**Tag**: `veilid-python-v0.0.0`]
|
|
||||||
|
- [x] __veilid-python__ [__Tag__: `veilid-python-v0.0.0`]
|
||||||
> The Veilid API bindings for Python
|
> The Veilid API bindings for Python
|
||||||
> Released to PyPi when the version number is changed in `pyproject.toml`
|
> Released to PyPi when the version number is changed in `pyproject.toml`
|
||||||
|
|
||||||
### Flutter Plugins:
|
### Flutter Plugins
|
||||||
|
|
||||||
- [ ] __veilid-flutter__
|
- [ ] __veilid-flutter__
|
||||||
> The Flutter plugin for the Veilid API.
|
> The Flutter plugin for the Veilid API.
|
||||||
> Because this requires a build of a native Rust crate, this is not yet released via https://pub.dev
|
> Because this requires a build of a native Rust crate, this is not yet released via <https://pub.dev>
|
||||||
> TODO: Eventually the rust crate should be bound to
|
> TODO: Eventually the rust crate should be bound to
|
||||||
|
|
||||||
### Operating System Packages:
|
### Operating System Packages
|
||||||
- [x] __veilid-server__ DEB package [**Tag**: `veilid-server-deb-v0.0.0`]
|
|
||||||
|
- [x] __veilid-server__ DEB package [__Tag__: `veilid-server-deb-v0.0.0`]
|
||||||
> The Veilid headless node binary in the following formats:
|
> The Veilid headless node binary in the following formats:
|
||||||
> * Standalone Debian/Ubuntu DEB file as a 'release file' on the `veilid` GitLab repository
|
>
|
||||||
> * Pushed to APT repository at https://packages.veilid.net
|
> - Standalone Debian/Ubuntu DEB file as a 'release file' on the `veilid` GitLab repository
|
||||||
- [x] __veilid-server__ RPM package [**Tag**: `veilid-server-rpm-v0.0.0`]
|
> - Pushed to APT repository at <https://packages.veilid.net>
|
||||||
|
>
|
||||||
|
- [x] __veilid-server__ RPM package [__Tag__: `veilid-server-rpm-v0.0.0`]
|
||||||
> The Veilid headless node binary in the following formats:
|
> The Veilid headless node binary in the following formats:
|
||||||
> * Standalone RedHat/CentOS RPM file as a 'release file' on the `veilid` GitLab repository
|
>
|
||||||
> * Pushed to Yum repository at https://packages.veilid.net
|
> - Standalone RedHat/CentOS RPM file as a 'release file' on the `veilid` GitLab repository
|
||||||
- [x] __veilid-cli__ DEB package [**Tag**: `veilid-cli-deb-v0.0.0`]
|
> - Pushed to Yum repository at <https://packages.veilid.net>
|
||||||
|
>
|
||||||
|
- [x] __veilid-cli__ DEB package [__Tag__: `veilid-cli-deb-v0.0.0`]
|
||||||
> The Veilid headless node administrator control binary in the following formats:
|
> The Veilid headless node administrator control binary in the following formats:
|
||||||
> * Standalone Debian/Ubuntu DEB file as a 'release file' on the `veilid` GitLab repository
|
>
|
||||||
> * Pushed to APT repository at https://packages.veilid.net
|
> - Standalone Debian/Ubuntu DEB file as a 'release file' on the `veilid` GitLab repository
|
||||||
- [x] __veilid-cli__ RPM package [**Tag**: `veilid-cli-rpm-v0.0.0`]
|
> - Pushed to APT repository at <https://packages.veilid.net>
|
||||||
|
>
|
||||||
|
- [x] __veilid-cli__ RPM package [__Tag__: `veilid-cli-rpm-v0.0.0`]
|
||||||
> The Veilid headless node administrator control binary in the following formats:
|
> The Veilid headless node administrator control binary in the following formats:
|
||||||
> * Standalone RedHat/CentOS RPM file as a 'release file' on the `veilid` GitLab repository
|
>
|
||||||
> * Pushed to Yum repository at https://packages.veilid.net
|
> - Standalone RedHat/CentOS RPM file as a 'release file' on the `veilid` GitLab repository
|
||||||
|
> - Pushed to Yum repository at <https://packages.veilid.net>
|
||||||
|
|
||||||
### Version Numbering:
|
### Version Numbering
|
||||||
|
|
||||||
All versions of Veilid Rust crates as well as `veilid-python` and `veilid-flutter` packages are versioned using Semver. Versions can differ per crate and package, and it is important for the Semver rules to be followed (https://semver.org/):
|
All versions of Veilid Rust crates as well as `veilid-python` and `veilid-flutter` packages are versioned using Semver. Versions can differ per crate and package, and it is important for the Semver rules to be followed (<https://semver.org/>):
|
||||||
|
|
||||||
* MAJOR version when you make incompatible API changes
|
- MAJOR version when you make incompatible API changes
|
||||||
* MINOR version when you add functionality in a backward compatible manner
|
- MINOR version when you add functionality in a backward compatible manner
|
||||||
* PATCH version when you make backward compatible bug fixes
|
- PATCH version when you make backward compatible bug fixes
|
||||||
|
|
||||||
The `version_bump.sh` script should be run on every release to stable. All of the Rust crates are versioned together and should have the same version, as well as the `veilid-python` Python package and `veilid-flutter` Flutter plugin.
|
The `version_bump.sh` script should be run on every release to stable. All of the Rust crates are versioned together and should have the same version, as well as the `veilid-python` Python package and `veilid-flutter` Flutter plugin.
|
||||||
|
|
||||||
## Bumpversion Setup and Usage
|
## Bumpversion Setup and Usage
|
||||||
|
|
||||||
### Install Bumpversion
|
### Install Bumpversion
|
||||||
|
|
||||||
1. Create a Python venv for bumpversion.py. Mine is in my home dir so it persists when I update my local Veilid `main`.
|
1. Create a Python venv for bumpversion.py. Mine is in my home dir so it persists when I update my local Veilid `main`.
|
||||||
|
|
||||||
`python3 -m venv ~/bumpversion-venv`
|
`python3 -m venv ~/bumpversion-venv`
|
||||||
@ -121,5 +142,6 @@ The `version_bump.sh` script should be run on every release to stable. All of th
|
|||||||
3. Install bumpversion. `pip3 install bumpversion`
|
3. Install bumpversion. `pip3 install bumpversion`
|
||||||
|
|
||||||
### Activate venv for version bumping step of the release process
|
### Activate venv for version bumping step of the release process
|
||||||
|
|
||||||
1. Activate the venv. `source ~/bumpversion-venv/bin/activate`
|
1. Activate the venv. `source ~/bumpversion-venv/bin/activate`
|
||||||
2. Return to step 2.4 of _Create a Gitlab Release_
|
2. Return to step 2.4 of _Create a Gitlab Release_
|
@ -122,7 +122,7 @@ impl PlatformSupportNetlink {
|
|||||||
}
|
}
|
||||||
|
|
||||||
cfg_if! {
|
cfg_if! {
|
||||||
if #[cfg(target_os = "android")] {
|
if #[cfg(any(target_os = "android", target_env = "musl"))] {
|
||||||
let res = unsafe { ioctl(sock, SIOCGIFFLAGS as i32, &mut req) };
|
let res = unsafe { ioctl(sock, SIOCGIFFLAGS as i32, &mut req) };
|
||||||
} else {
|
} else {
|
||||||
let res = unsafe { ioctl(sock, SIOCGIFFLAGS, &mut req) };
|
let res = unsafe { ioctl(sock, SIOCGIFFLAGS, &mut req) };
|
||||||
|
Loading…
Reference in New Issue
Block a user