{"id":20981964,"url":"https://github.com/lowrisc/opentitan-provisioning","last_synced_at":"2025-07-02T03:06:45.283Z","repository":{"id":253044389,"uuid":"833814809","full_name":"lowRISC/opentitan-provisioning","owner":"lowRISC","description":"Reference OpenTitan Provisioning Infrastructure","archived":false,"fork":false,"pushed_at":"2025-06-26T17:11:43.000Z","size":34973,"stargazers_count":8,"open_issues_count":14,"forks_count":7,"subscribers_count":12,"default_branch":"main","last_synced_at":"2025-06-26T18:26:57.075Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/lowRISC.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","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}},"created_at":"2024-07-25T20:06:24.000Z","updated_at":"2025-06-26T17:11:49.000Z","dependencies_parsed_at":null,"dependency_job_id":"8335f337-5ba1-487c-bc1c-81f082c4cf16","html_url":"https://github.com/lowRISC/opentitan-provisioning","commit_stats":null,"previous_names":["lowrisc/opentitan-provisioning"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/lowRISC/opentitan-provisioning","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lowRISC%2Fopentitan-provisioning","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lowRISC%2Fopentitan-provisioning/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lowRISC%2Fopentitan-provisioning/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lowRISC%2Fopentitan-provisioning/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/lowRISC","download_url":"https://codeload.github.com/lowRISC/opentitan-provisioning/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/lowRISC%2Fopentitan-provisioning/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263066558,"owners_count":23408387,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":"2024-11-19T05:42:02.813Z","updated_at":"2025-07-02T03:06:45.273Z","avatar_url":"https://github.com/lowRISC.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"[//]: # (Copyright lowRISC contributors \\(OpenTitan project\\).)\n[//]: # (Licensed under the Apache License, Version 2.0, see LICENSE for details.)\n[//]: # (SPDX-License-Identifier: Apache-2.0)\n\n# OpenTitan Provisioning Infrastructure\n\n## Getting Started\n\n### System Requirements\n\nCurrently, Ubuntu 22.04LTS is the only supported development environment. There\nare [build container](docs/containers.md#building-inside-the-build-container)\ninstructions available for other OS distributions.\n\n### Git LFS\n\nThis repo uses Git LFS to track larger files, such as FPGA bitstreams and DUT\nprovisioning firmware binaries. To properly clone this repo, ensure you have\nGit LFS installed by:\n\n1. adding the package cloud repository:\n\n   ```shell\n   curl -s https://packagecloud.io/install/repositories/github/git-lfs/script.deb.sh | sudo bash\n   ```\n2. following the \"Install Dependencies\" instructions below.\n\n   ```shell\n   # Run the following command if this is the first time you are using lfs\n   # in your target workstation.\n   git lfs install\n\n   # The following command can be used to pull  LFS files.\n   # This may be required if you installed LFS after cloning the repo.\n   git lfs pull\n   ```\n\nSee the Git LFS [collaboration](https://docs.github.com/en/repositories/working-with-files/managing-large-files/collaboration-with-git-large-file-storage)\ndetails on why this is necessary.\n\n### Install Dependencies\n\nInstall dependencies via `setup.sh`. This will run `apt` to install system-level\ndependencies, and install `bazelisk`, a Bazel wrapper that simplifies version\nselection.\n\n### Add bazelisk to PATH\n\nMake sure to add `${GOPATH}/bin` to your path, e.g.:\n\n```console\n$ export PATH=\"$PATH:$(go env GOPATH)/bin\"\n```\n\n### Runing Build Commands\n\nTo build and run all tests:\n\n```console\n$ bazelisk test //...\n```\n\nTo run integration test cases:\n\n```console\n$ ./run_integration_tests.sh\n```\n\nTo format the code before submitting changes:\n\n```console\n$ bazelisk run //quality:buildifier_fix\n$ bazelisk run //quality:clang_format_fix\n$ bazelisk run //quality:gofmt_fix\n$ bazelisk run //quality:protolint_fix\n```\n\nTo run only the lint checks locally that are also run in CI:\n\n```console\n$ bazelisk test //quality/...\n```\n\nNote: these are also run automatically when running all tests above.\n\n## GitHub Releases\n\nThe release process assumes you have your git and\n[GitHub CLI](https://cli.github.com/) credentials in `$HOME/.git` and\n`$HOME/.config/gh` repsectively.\n\n1. Commit your changes.\n2. Create a tag locally before running the build command.\n\n   ```console\n   OT_GIT_TAG=v0.0.1pre1\n   git tag ${OT_GIT_TAG}\n   ```\n\n3. Run the release command.  `util/get_workspace_status.sh` captures the git\n   tag in the binaries when using the `--stamp` build flag.\n\n   ```console\n   $ bazelisk run --stamp //release -- ${OT_GIT_TAG} -p\n   ```\n\n## Read More\n\n* [Contribution Guide](docs/contributing.md)\n* [Deployment Guide](docs/deployment.md)\n* [Documentation index](docs/README.md)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flowrisc%2Fopentitan-provisioning","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flowrisc%2Fopentitan-provisioning","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flowrisc%2Fopentitan-provisioning/lists"}