A high-performance C++ cross-platform build CLI
Project description
ccgo
A cross-platform C++ build system designed to simplify and accelerate multi-platform development.
Features
- ๐ Fast cross-platform C++ builds for Android, iOS, macOS, Windows, Linux, and OpenHarmony (OHOS)
- ๐๏ธ Kotlin Multiplatform (KMP) support
- ๐ฆ Conan C/C++ package manager integration
- ๐งช Integrated testing with GoogleTest
- ๐ Benchmarking support with Google Benchmark
- ๐ Documentation generation
- ๐ ๏ธ Project scaffolding from templates
- โ Environment dependency checking
- ๐งน Smart build artifact cleaning
Installation
# Install from PyPI
pip3 install ccgo
# Or install from source in development mode
cd ccgo
pip3 install -e .
Quick Start
# Create a new C++ library project
ccgo new my-awesome-lib
# Navigate to the project directory
cd my-awesome-lib/<project_relative_path>
# Build for Android
ccgo build android
# Run tests
ccgo test
# Build documentation
ccgo doc --open
Commands Reference
1. Project Creation
ccgo new - Create New Project
Create a new library project in a new directory.
ccgo new <project-name> [options]
Options:
--template-url <url>- Custom template repository URL--data <key>=<value>- Template variables (repeatable)--defaults- Use default values for all prompts
Examples:
# Create with interactive prompts
ccgo new my-project
# Create with all defaults
ccgo new my-project --defaults
# Use custom template
ccgo new my-project --template-url https://github.com/user/template.git
ccgo new my-project --template-url /path/to/user/template
# Set template variables
ccgo new my-project --data cpy_project_version=2.0.0
ccgo init - Initialize in Current Directory
Initialize a library project in the current directory.
ccgo init [options]
Options:
--template-url <url>- Custom template repository URL--data <key>=<value>- Template variables (repeatable)--defaults- Use default values for all prompts--force- Skip confirmation prompt
Examples:
ccgo init
ccgo init --defaults --force
2. Build Commands
ccgo build - Build for Platforms
Build your library for specific platforms.
ccgo build <target> [options]
Targets:
android- Build for Android (supports--arch)ios- Build for iOSmacos- Build for macOSwindows- Build for Windowslinux- Build for Linuxohos- Build for OpenHarmony (supports--arch)kmp- Build Kotlin Multiplatform libraryconan- Build Conan C/C++ packageinclude- Build include headers
Options:
--arch <architectures>- Comma-separated architecture list (Android/OHOS only)- Android:
armeabi-v7a,arm64-v8a,x86_64 - OHOS:
armeabi-v7a,arm64-v8a,x86_64
- Android:
--link-type <type>- Library link type:static,shared, orboth(default:both)--toolchain <toolchain>- Windows toolchain:auto,msvc, ormingw(default:auto)--ide-project- Generate IDE project files--docker- Build using Docker (cross-platform builds)
Examples:
# Build for Android with specific architectures
ccgo build android --arch armeabi-v7a,arm64-v8a
# Build for OHOS with all architectures
ccgo build ohos --arch armeabi-v7a,arm64-v8a,x86_64
# Build for iOS
ccgo build ios
# Build for macOS
ccgo build macos
# Build for Windows
ccgo build windows
# Build for Windows with specific toolchain
ccgo build windows --toolchain msvc
ccgo build windows --toolchain mingw
# Build for Linux
ccgo build linux
# Build static libraries only
ccgo build linux --link-type static
# Build shared libraries only
ccgo build macos --link-type shared
# Build both static and shared libraries (default)
ccgo build ios --link-type both
# Build Kotlin Multiplatform library
ccgo build kmp
# Build Conan C/C++ package
ccgo build conan
# Generate IDE project for Android
ccgo build android --ide-project
# Cross-platform build using Docker
ccgo build linux --docker
ccgo build windows --docker
3. Testing & Benchmarking
ccgo test - Run Tests
Build and run GoogleTest-based unit tests.
ccgo test [options]
Options:
--build-only- Only build tests without running--run-only- Only run tests (assumes already built)--filter <pattern>- GoogleTest filter (e.g., 'MyTest*')--ide-project- Generate IDE project for tests--gtest-args <args>- Additional GoogleTest arguments
Examples:
# Build and run all tests
ccgo test
# Only build tests
ccgo test --build-only
# Run specific tests
ccgo test --filter "MyTest*"
# Run tests multiple times
ccgo test --gtest-args "--gtest_repeat=3"
# Generate IDE project for debugging tests
ccgo test --ide-project
ccgo bench - Run Benchmarks
Build and run Google Benchmark-based performance benchmarks.
ccgo bench [options]
Options:
--build-only- Only build benchmarks without running--run-only- Only run benchmarks (assumes already built)--filter <pattern>- Google Benchmark filter (e.g., 'BM_Sort*')--ide-project- Generate IDE project for benchmarks--benchmark-args <args>- Additional Google Benchmark arguments--format <format>- Output format:console,json,csv(default: console)
Examples:
# Build and run all benchmarks
ccgo bench
# Only build benchmarks
ccgo bench --build-only
# Run specific benchmarks
ccgo bench --filter "BM_Sort*"
# Output results as JSON
ccgo bench --format json
# Output results as CSV
ccgo bench --format csv
4. Documentation
ccgo doc - Build Documentation
Generate project documentation (typically using Doxygen).
ccgo doc [options]
Options:
--open- Open documentation in browser after building--serve- Start local web server to view documentation--port <port>- Port for web server (default: 8000)--clean- Clean build before generating
Examples:
# Build documentation
ccgo doc
# Build and open in browser
ccgo doc --open
# Build and serve on localhost:8000
ccgo doc --serve
# Serve on custom port
ccgo doc --serve --port 3000
# Clean build
ccgo doc --clean
5. Publishing
ccgo publish - Publish Libraries
Publish your library to package repositories.
ccgo publish <target>
Targets:
android- Publish to Maven repositoryohos- Publish to OHPM repositorykmp- Publish KMP library to Maven (local or remote)
Examples:
# Publish Android library to Maven
ccgo publish android
# Publish OHOS library to OHPM
ccgo publish ohos
# Publish Kotlin Multiplatform library
ccgo publish kmp
6. Maintenance Commands
ccgo check - Check Dependencies
Verify that platform-specific development dependencies are installed.
ccgo check [target] [options]
Targets:
all- Check all platforms (default)android- Check Android development environmentios- Check iOS development environmentmacos- Check macOS development environmentwindows- Check Windows development environmentlinux- Check Linux development environmentohos- Check OpenHarmony development environment
Options:
--verbose- Show detailed information
Examples:
# Check all platforms
ccgo check
# Check Android environment
ccgo check android
# Check with verbose output
ccgo check ios --verbose
ccgo clean - Clean Build Artifacts
Remove build artifacts and caches.
ccgo clean [target] [options]
Targets:
all- Clean all platforms (default)android- Clean Android build cachesios- Clean iOS build cachesmacos- Clean macOS build cachesohos- Clean OpenHarmony build cacheskmp- Clean Kotlin Multiplatform build cachesexamples- Clean examples build caches
Options:
--native-only- Clean onlycmake_build/(native CMake builds)--dry-run- Show what would be cleaned without deleting-y, --yes- Skip confirmation prompts
Examples:
# Clean all (with confirmation)
ccgo clean
# Clean only Android
ccgo clean android
# Preview what will be deleted
ccgo clean --dry-run
# Clean all without confirmation
ccgo clean -y
# Clean only native CMake builds
ccgo clean --native-only
7. Help
ccgo help - Show Help
Display comprehensive help information.
ccgo help
# Or get help for specific command
ccgo <command> --help
Environment Variables
Android
ANDROID_HOME- Android SDK locationANDROID_NDK_HOME- Android NDK locationJAVA_HOME- Java Development Kit location
OpenHarmony (OHOS)
OHOS_SDK_HOMEorHOS_SDK_HOME- OHOS Native SDK location
iOS/macOS
- Requires Xcode and command-line tools
Project Structure
Projects created with ccgo follow this structure:
my-project/
โโโ CCGO.toml # CCGO project config
โโโ CMakeLists.txt # Root CMake configuration
โโโ src/ # Source code
โโโ include/ # Public headers
โโโ docs/ # docs files
โโโ tests/ # GoogleTest unit tests
โโโ benches/ # Benchmark tests
โโโ android/ # Android-specific files (Gradle)
โโโ ohos/ # OHOS-specific files (hvigor)
โโโ kmp/ # Kotlin Multiplatform files (Gradle)
SDK Archive Structure
When you run ccgo build <target>, the output is placed in target/{debug|release}/<platform>/ with a unified archive structure.
Archive Naming Convention
{PROJECT}_{PLATFORM}_SDK-{version}[-{suffix}].zip # Main SDK archive
{PROJECT}_{PLATFORM}_SDK-{version}[-{suffix}]-SYMBOLS.zip # Debug symbols archive
Examples:
MYLIB_ANDROID_SDK-1.0.0-release.zipMYLIB_IOS_SDK-1.0.0-beta.5-dirty.zipMYLIB_LINUX_SDK-2.1.0-SYMBOLS.zip
Unified SDK Archive Structure
All platforms follow the same archive structure:
{PROJECT}_{PLATFORM}_SDK-{version}.zip
โโโ lib/{platform}/
โ โโโ static/ # Static libraries (.a, .lib)
โ โ โโโ [{arch}/] # Architecture subdirectory (if multi-arch)
โ โ โโโ lib{name}.a
โ โโโ shared/ # Shared libraries (.so, .dylib, .dll)
โ โโโ [{arch}/]
โ โโโ lib{name}.so
โโโ include/{project}/ # Public header files
โ โโโ **/*.h
โโโ haars/{platform}/ # Platform packages (Android AAR / OHOS HAR)
โ โโโ {PROJECT}_{PLATFORM}_SDK-{version}.aar
โโโ meta/{platform}/ # Metadata files
โโโ build_info.json # Build information
โโโ archive_info.json # Archive file listing
Platform-Specific Build Artifacts
Android
ccgo build android [--arch armeabi-v7a,arm64-v8a,x86_64]
Output: target/{debug|release}/android/
| File | Description |
|---|---|
MYLIB_ANDROID_SDK-{version}.zip |
Main SDK archive |
MYLIB_ANDROID_SDK-{version}-SYMBOLS.zip |
Debug symbols (unstripped .so) |
MYLIB_ANDROID_SDK-{version}.aar |
Android Archive (standalone) |
SDK Contents:
โโโ lib/android/static/{arch}/lib{name}.a
โโโ lib/android/shared/{arch}/lib{name}.so
โโโ include/{project}/**/*.h
โโโ haars/android/*.aar
โโโ meta/android/build_info.json
iOS
ccgo build ios
Output: target/{debug|release}/ios/
| File | Description |
|---|---|
MYLIB_IOS_SDK-{version}.zip |
Main SDK archive |
MYLIB_IOS_SDK-{version}-SYMBOLS.zip |
Debug symbols (dSYM) |
SDK Contents:
โโโ lib/ios/static/{name}.xcframework/
โโโ lib/ios/shared/{name}.xcframework/
โโโ include/{project}/**/*.h
โโโ meta/ios/build_info.json
Architectures: arm64 (device), arm64-simulator, x86_64-simulator
macOS
ccgo build macos
Output: target/{debug|release}/macos/
| File | Description |
|---|---|
MYLIB_MACOS_SDK-{version}.zip |
Main SDK archive |
MYLIB_MACOS_SDK-{version}-SYMBOLS.zip |
Debug symbols (dSYM) |
SDK Contents:
โโโ lib/macos/static/{name}.xcframework/
โโโ lib/macos/shared/{name}.xcframework/
โโโ include/{project}/**/*.h
โโโ meta/macos/build_info.json
Architectures: Universal binary (arm64 + x86_64)
tvOS
ccgo build tvos
Output: target/{debug|release}/tvos/
SDK Contents:
โโโ lib/tvos/static/{name}.xcframework/
โโโ lib/tvos/shared/{name}.xcframework/
โโโ include/{project}/**/*.h
โโโ meta/tvos/build_info.json
Architectures: arm64 (device), arm64-simulator
watchOS
ccgo build watchos
Output: target/{debug|release}/watchos/
SDK Contents:
โโโ lib/watchos/static/{name}.xcframework/
โโโ lib/watchos/shared/{name}.xcframework/
โโโ include/{project}/**/*.h
โโโ meta/watchos/build_info.json
Architectures: arm64_32, armv7k (device), arm64-simulator
Linux
ccgo build linux
Output: target/{debug|release}/linux/
| File | Description |
|---|---|
MYLIB_LINUX_SDK-{version}.zip |
Main SDK archive |
MYLIB_LINUX_SDK-{version}-SYMBOLS.zip |
Debug symbols (unstripped .so) |
SDK Contents:
โโโ lib/linux/static/lib{name}.a
โโโ lib/linux/shared/lib{name}.so
โโโ include/{project}/**/*.h
โโโ meta/linux/build_info.json
Architecture: x86_64
Windows
ccgo build windows [--toolchain auto|msvc|mingw]
Output: target/{debug|release}/windows/
| File | Description |
|---|---|
MYLIB_WINDOWS_SDK-{version}.zip |
Main SDK archive |
SDK Contents (MinGW):
โโโ lib/windows/static/lib{name}.a
โโโ lib/windows/shared/{name}.dll
โโโ lib/windows/shared/lib{name}.dll.a # Import library
โโโ include/{project}/**/*.h
โโโ meta/windows/build_info.json
SDK Contents (MSVC):
โโโ lib/windows/static/{name}.lib
โโโ lib/windows/shared/{name}.dll
โโโ lib/windows/shared/{name}.lib # Import library
โโโ include/{project}/**/*.h
โโโ meta/windows/build_info.json
Architecture: x86_64
OpenHarmony (OHOS)
ccgo build ohos [--arch armeabi-v7a,arm64-v8a,x86_64]
Output: target/{debug|release}/ohos/
| File | Description |
|---|---|
MYLIB_OHOS_SDK-{version}.zip |
Main SDK archive |
MYLIB_OHOS_SDK-{version}-SYMBOLS.zip |
Debug symbols (unstripped .so) |
MYLIB_OHOS_SDK-{version}.har |
Harmony Archive (standalone) |
SDK Contents:
โโโ lib/ohos/static/{arch}/lib{name}.a
โโโ lib/ohos/shared/{arch}/lib{name}.so
โโโ include/{project}/**/*.h
โโโ haars/ohos/*.har
โโโ meta/ohos/build_info.json
Conan
ccgo build conan
Output: target/{debug|release}/conan/
SDK Contents:
โโโ lib/conan/static/lib{name}.a
โโโ lib/conan/shared/lib{name}.so
โโโ include/{project}/**/*.h
โโโ meta/conan/build_info.json
Metadata Files
build_info.json
Contains build metadata:
{
"project": "mylib",
"platform": "android",
"version": "1.0.0",
"link_type": "both",
"build_time": "2024-01-15T10:30:00.123456",
"build_host": "Darwin",
"architectures": ["arm64-v8a", "armeabi-v7a", "x86_64"],
"git_commit": "abc1234",
"git_branch": "main"
}
archive_info.json
Contains file listing with sizes:
{
"archive_metadata": {
"version": "1.0",
"generated_at": "2024-01-15T10:30:00Z",
"archive_name": "MYLIB_ANDROID_SDK-1.0.0.zip",
"archive_size": 1234567
},
"files": [
{"path": "lib/android/shared/arm64-v8a/libmylib.so", "size": 123456}
],
"summary": {
"total_files": 10,
"total_size": 500000,
"library_count": 6,
"platforms": ["android"],
"architectures": ["arm64-v8a", "armeabi-v7a", "x86_64"]
}
}
Excluded Files
The following files are automatically excluded from archives:
CPPLINT.cfg.clang-format.clang-tidy
Advanced Usage
Using Custom Templates
You can create projects from custom templates:
# From GitHub repository
ccgo new my-project --template-url=https://github.com/user/my-template.git
# From local directory
ccgo new my-project --template-url=/path/to/local/template
CI/CD Integration
The generated build.py script supports CI/CD workflows with environment variables:
CI_IS_RELEASE- Build as release vs betaCI_BUILD_<PLATFORM>- Enable/disable platform builds
Example:
export CI_IS_RELEASE=1
export CI_BUILD_ANDROID=1
export CI_BUILD_IOS=1
python3 build.py
Multi-Architecture Builds
Build for multiple architectures simultaneously:
# Android: build for 32-bit ARM, 64-bit ARM, and x86_64
ccgo build android --arch armeabi-v7a,arm64-v8a,x86_64
# OHOS: build for all supported architectures
ccgo build ohos --arch armeabi-v7a,arm64-v8a,x86_64
Troubleshooting
Common Issues
-
"Command not found" after installation
- Ensure
pip3install directory is in your PATH - Try
python3 -m ccgoinstead ofccgo
- Ensure
-
Android build fails
- Verify
ANDROID_HOME,ANDROID_NDK_HOME, andJAVA_HOMEare set - Run
ccgo check android --verboseto diagnose
- Verify
-
OHOS build fails
- Verify
OHOS_SDK_HOMEorHOS_SDK_HOMEis set - Run
ccgo check ohos --verboseto diagnose
- Verify
-
iOS/macOS build fails
- Ensure Xcode and command-line tools are installed
- Run
xcode-select --installif needed
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
ccgo is available under the MIT license. See the LICENSE file for the full license text.
Links
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ccgo-3.0.5.tar.gz.
File metadata
- Download URL: ccgo-3.0.5.tar.gz
- Upload date:
- Size: 185.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09755c4ae00590699a5ce31337e026f0e14730cc45aa5a3703c1839f379fa40c
|
|
| MD5 |
e2702b3d0ae82c37a9cec15715fced0c
|
|
| BLAKE2b-256 |
e57ffcd11990ebf9b930d600af955a3bafc466eafcebc742916b514b774401e6
|
Provenance
The following attestation bundles were made for ccgo-3.0.5.tar.gz:
Publisher:
release.yml on zhlinh/ccgo
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ccgo-3.0.5.tar.gz -
Subject digest:
09755c4ae00590699a5ce31337e026f0e14730cc45aa5a3703c1839f379fa40c - Sigstore transparency entry: 789719958
- Sigstore integration time:
-
Permalink:
zhlinh/ccgo@2ab8da5d150ecc9e05a76219134dae54823a0265 -
Branch / Tag:
refs/tags/v3.0.5 - Owner: https://github.com/zhlinh
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@2ab8da5d150ecc9e05a76219134dae54823a0265 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ccgo-3.0.5-py3-none-win_amd64.whl.
File metadata
- Download URL: ccgo-3.0.5-py3-none-win_amd64.whl
- Upload date:
- Size: 2.0 MB
- Tags: Python 3, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
31264dc77e5e49868540bb770c20e7afc28f9a4c1041c84b83ad47020889431c
|
|
| MD5 |
0b01e1698df8a4e8e5d41c4838389911
|
|
| BLAKE2b-256 |
dc08d8a11856cf3bc8356827af5794db97235d7373af26517869012ec524cb60
|
Provenance
The following attestation bundles were made for ccgo-3.0.5-py3-none-win_amd64.whl:
Publisher:
release.yml on zhlinh/ccgo
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ccgo-3.0.5-py3-none-win_amd64.whl -
Subject digest:
31264dc77e5e49868540bb770c20e7afc28f9a4c1041c84b83ad47020889431c - Sigstore transparency entry: 789719965
- Sigstore integration time:
-
Permalink:
zhlinh/ccgo@2ab8da5d150ecc9e05a76219134dae54823a0265 -
Branch / Tag:
refs/tags/v3.0.5 - Owner: https://github.com/zhlinh
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@2ab8da5d150ecc9e05a76219134dae54823a0265 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ccgo-3.0.5-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: ccgo-3.0.5-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.2 MB
- Tags: Python 3, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ea10216e6e3ba7f767ddfc82c2b4a7647f22d5d34ba82c6c6da8c48e503e33a5
|
|
| MD5 |
00e8e5fcb14e367e7588ea35488a0dba
|
|
| BLAKE2b-256 |
6a707b663c635142488ab8cea9b2f6359df5a107af3aeb5f036c52f043523644
|
Provenance
The following attestation bundles were made for ccgo-3.0.5-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:
Publisher:
release.yml on zhlinh/ccgo
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ccgo-3.0.5-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl -
Subject digest:
ea10216e6e3ba7f767ddfc82c2b4a7647f22d5d34ba82c6c6da8c48e503e33a5 - Sigstore transparency entry: 789719961
- Sigstore integration time:
-
Permalink:
zhlinh/ccgo@2ab8da5d150ecc9e05a76219134dae54823a0265 -
Branch / Tag:
refs/tags/v3.0.5 - Owner: https://github.com/zhlinh
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@2ab8da5d150ecc9e05a76219134dae54823a0265 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ccgo-3.0.5-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: ccgo-3.0.5-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 2.1 MB
- Tags: Python 3, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7f5c979df4c88340d71ce2238f50cd38204db50dccec452f3e5be5ad6716752d
|
|
| MD5 |
fca4df9e9b8fde03a96c558fafe50bb2
|
|
| BLAKE2b-256 |
15f56a2bdb1122a364bbaf970e5741672ac7f116a5bc685667f112ddabc59d98
|
Provenance
The following attestation bundles were made for ccgo-3.0.5-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:
Publisher:
release.yml on zhlinh/ccgo
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ccgo-3.0.5-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl -
Subject digest:
7f5c979df4c88340d71ce2238f50cd38204db50dccec452f3e5be5ad6716752d - Sigstore transparency entry: 789719959
- Sigstore integration time:
-
Permalink:
zhlinh/ccgo@2ab8da5d150ecc9e05a76219134dae54823a0265 -
Branch / Tag:
refs/tags/v3.0.5 - Owner: https://github.com/zhlinh
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@2ab8da5d150ecc9e05a76219134dae54823a0265 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ccgo-3.0.5-py3-none-macosx_11_0_arm64.whl.
File metadata
- Download URL: ccgo-3.0.5-py3-none-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.8 MB
- Tags: Python 3, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e466e42f0682a9d5f6af8fa9bf4f7dee0d22d8edb52da41ad41bdc5acabb64cb
|
|
| MD5 |
967fc037c928f568a6686d8cc893e138
|
|
| BLAKE2b-256 |
6009db745120e4e35ad514da0a101c4e377d10ba9d08dd174f80c609a521c7b9
|
Provenance
The following attestation bundles were made for ccgo-3.0.5-py3-none-macosx_11_0_arm64.whl:
Publisher:
release.yml on zhlinh/ccgo
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ccgo-3.0.5-py3-none-macosx_11_0_arm64.whl -
Subject digest:
e466e42f0682a9d5f6af8fa9bf4f7dee0d22d8edb52da41ad41bdc5acabb64cb - Sigstore transparency entry: 789719963
- Sigstore integration time:
-
Permalink:
zhlinh/ccgo@2ab8da5d150ecc9e05a76219134dae54823a0265 -
Branch / Tag:
refs/tags/v3.0.5 - Owner: https://github.com/zhlinh
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@2ab8da5d150ecc9e05a76219134dae54823a0265 -
Trigger Event:
push
-
Statement type:
File details
Details for the file ccgo-3.0.5-py3-none-macosx_10_12_x86_64.whl.
File metadata
- Download URL: ccgo-3.0.5-py3-none-macosx_10_12_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: Python 3, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9559c6a582813ff688a79a75f537d4eebfdbf4a15dbfcdf8dc6f45314b2876c7
|
|
| MD5 |
37afc3b3f095bcf0123eab9613bf1fcd
|
|
| BLAKE2b-256 |
76e37fd47b53fd228add33d26a8065d35dbb5068cc78a005313e6e7290597cbd
|
Provenance
The following attestation bundles were made for ccgo-3.0.5-py3-none-macosx_10_12_x86_64.whl:
Publisher:
release.yml on zhlinh/ccgo
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
ccgo-3.0.5-py3-none-macosx_10_12_x86_64.whl -
Subject digest:
9559c6a582813ff688a79a75f537d4eebfdbf4a15dbfcdf8dc6f45314b2876c7 - Sigstore transparency entry: 789719964
- Sigstore integration time:
-
Permalink:
zhlinh/ccgo@2ab8da5d150ecc9e05a76219134dae54823a0265 -
Branch / Tag:
refs/tags/v3.0.5 - Owner: https://github.com/zhlinh
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@2ab8da5d150ecc9e05a76219134dae54823a0265 -
Trigger Event:
push
-
Statement type: