{"id":49818990,"url":"https://github.com/openblockcc/openblock-tools-builder","last_synced_at":"2026-05-13T09:11:30.361Z","repository":{"id":352767631,"uuid":"1216536220","full_name":"openblockcc/openblock-tools-builder","owner":"openblockcc","description":"Automated builder for OpenBlock binary tools across platforms.","archived":false,"fork":false,"pushed_at":"2026-04-21T03:07:39.000Z","size":25,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-04-21T04:35:03.777Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/openblockcc.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-21T02:15:14.000Z","updated_at":"2026-04-21T03:07:38.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/openblockcc/openblock-tools-builder","commit_stats":null,"previous_names":["openblockcc/openblock-tools-builder"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/openblockcc/openblock-tools-builder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openblockcc%2Fopenblock-tools-builder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openblockcc%2Fopenblock-tools-builder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openblockcc%2Fopenblock-tools-builder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openblockcc%2Fopenblock-tools-builder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/openblockcc","download_url":"https://codeload.github.com/openblockcc/openblock-tools-builder/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/openblockcc%2Fopenblock-tools-builder/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32975359,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-13T06:31:55.726Z","status":"ssl_error","status_checked_at":"2026-05-13T06:31:51.336Z","response_time":115,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-05-13T09:11:28.912Z","updated_at":"2026-05-13T09:11:30.353Z","avatar_url":"https://github.com/openblockcc.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# openblock-tools-builder\n\nAutomated builder for OpenBlock binary tools across platforms. Packages Arduino CLI and portable Python with essential packages, then publishes platform-specific archives via GitHub Releases.\n\n## Tool List\n\n- **Arduino CLI** (latest)\n\n    Includes builtin tools (serial-discovery, mdns-discovery, serial-monitor, dfu-discovery, ctags) and the official Arduino package/library index files. Board packages and third-party board manager URLs are NOT included — they are configured and downloaded on-demand by the application.\n\n- **Python 3.12** (via [python-build-standalone](https://github.com/indygreg/python-build-standalone))\n\n    Packages:\n\n    | Name | Description |\n    |------|-------------|\n    | uflash | micro:bit flashing |\n    | microfs | micro:bit filesystem |\n    | esptool | ESP32/ESP8266 flashing |\n    | kflash | K210 flashing |\n    | openblock-obmpy | OpenBlock MicroPython |\n\n## Supported Platforms\n\n| Platform | Description |\n|----------|-------------|\n| win32-x64 | Windows x64 |\n| darwin-x64 | macOS x64 (Intel) |\n| darwin-arm64 | macOS ARM64 (Apple Silicon) |\n| linux-x64 | Linux x64 |\n| linux-arm64 | Linux ARM64 |\n| linux-arm | Linux ARMv7 |\n\n## Usage\n\n### Local Build\n\n```bash\nnpm install\nnode scripts/build.js --platform win32-x64 --version 3.0.0\n```\n\nOr use npm scripts:\n\n```bash\nnpm run build:win32-x64\nnpm run build:darwin-arm64\nnpm run build:linux-x64\n```\n\nOutput files are placed in the `output/` directory:\n- `openblock-tools-{platform}-v{version}.7z` — the archive\n- `openblock-tools-{platform}-v{version}.7z.sha256` — SHA256 checksum\n\n### Automated Build (GitHub Actions)\n\nPush a version tag to trigger builds for all platforms:\n\n```bash\ngit tag v3.0.0\ngit push origin v3.0.0\n```\n\nOr use **workflow_dispatch** to manually trigger a build from the GitHub Actions UI.\n\n## Output Package Structure\n\n```\nArduino/\n├── arduino-cli[.exe]\n├── arduino-cli.yaml\n├── LICENSE.txt\n├── package_index.json\n├── library_index.json\n└── packages/\n    └── builtin/\n        └── tools/\n            ├── serial-discovery/\n            ├── mdns-discovery/\n            ├── serial-monitor/\n            ├── dfu-discovery/\n            └── ctags/\nPython/\n├── python[.exe]           (Windows)\n├── python3                (macOS symlink -\u003e bin/python3)\n├── bin/                   (macOS/Linux)\n│   ├── python3\n│   ├── esptool.py\n│   └── ...\n├── Scripts/               (Windows)\n│   ├── esptool.exe\n│   └── ...\n└── lib/ or Lib/\n    └── site-packages/\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenblockcc%2Fopenblock-tools-builder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fopenblockcc%2Fopenblock-tools-builder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fopenblockcc%2Fopenblock-tools-builder/lists"}