We organize known future work in GitHub projects. See Tracking SPIRV-Tools work with GitHub projects for more.
To report a new bug or request a new feature, please file a GitHub issue. Please ensure the bug has not already been reported by searching issues and projects. If the bug has not already been reported open a new one here.
When opening a new issue for a bug, make sure you provide the following:
For feature requests, we use issues as well. Please create a new issue, as with bugs. In the issue provide
Before we can use your code, you must sign the Khronos Open Source Contributor License Agreement (CLA), which you can do online. The CLA is necessary mainly because you own the copyright to your changes, even after your contribution becomes part of our codebase, so we need your permission to use and distribute your code. We also need to be sure of various other things -- for instance that you‘ll tell us if you know that your code infringes on other people’s patents. You don‘t have to sign the CLA until after you’ve submitted your code for review and a member has approved it, but you must do it before we can put your code into our codebase.
See README.md for instruction on how to get, build, and test the source. Once you have made your changes:
clang-format -style=file -i [modified-files]
can help.Fixes https://github.com/KhronosGroup/SPIRV-Tools/issues/1234
When you do this, the issue will be closed automatically when the commit goes into master. Also, this helps us update the CHANGES file.The reviewer can either approve your PR or request changes. If changes are requested:
After the PR has been reviewed it is the job of the reviewer to merge the PR. Instructions for this are given below.
The formal code reviews are done on GitHub. Reviewers are to look for all of the usual things:
When looking for functional problems, there are some common problems reviewers should pay particular attention to:
We intend to maintain a linear history on the GitHub master branch, and the build and its tests should pass at each commit in that history. A linear always-working history is easier to understand and to bisect in case we want to find which commit introduced a bug. The Squash and Merge button on the GitHub web interface. All other ways of merging on the web interface have been disabled.
Before merging, we generally require:
The squash-and-merge button will turn green when these requirements are met. Maintainers have the to power to merge even if the button is not green, but that is discouraged.
The purpose of the smoke test is to let us know if shaderc fails to build with the change. If it fails, the maintainer needs to determine if the reason for the failure is a problem in the current PR or if another repository needs to be changed. Most of the time Glslang needs to be updated to account for the change in SPIR-V Tools.
The PR can still be merged if the problem is not with that PR.
For security reasons, not all tests will run automatically. When they do not, a maintainer will have to start the tests.
If the Github actions tests do not run on a PR, they can be initiated by closing and reopening the PR.
If the kokoro tests are not run, they can be run by adding the label kokoro:run
to the PR.