summaryrefslogtreecommitdiffstats
path: root/CONTRIBUTION.md
Commit message (Collapse)AuthorAge
* Add reuse and related files (#5622)Yong He2024-11-21
| | | | | | | | | * Add reuse and related files * Fix dxcapi license. --------- Co-authored-by: James Riordon <jriordon@outofcontrol.ca>
* Markdown emphasis corrections (#5588)Ellie Hermaszewska2024-11-19
| | | | | | | | | | | | | | | | | * Add markdown formatting to extras/formatting.sh * Correct formatting in markdown * Warn on unrecognized argument in formatting script * Print all diffs in formatting script * Correct markdown emph formatting * Don't format markdown by default --------- Co-authored-by: Yong He <yonghe@outlook.com>
* Update CONTRIBUTION.md to clarify merge strategy. (#5546)Yong He2024-11-13
| | | | | | | | | | | * Update CONTRIBUTION.md to clarify merge strategy. * Update. * Add explanation on breaking change labeling. --------- Co-authored-by: Ellie Hermaszewska <ellieh@nvidia.com>
* mention code formatting in contribution guidelines (#5514)Ellie Hermaszewska2024-11-11
| | | Co-authored-by: Yong He <yonghe@outlook.com>
* Update CONTRIBUTION.mdJay Kwak2024-08-21
| | | Fix a mistake on a command line argument for building slang-llvm
* Update build steps for MacOS (#4813)Jay Kwak2024-08-13
| | | | | | This commit adds a quick build step for MacOS on CONTRIBUTION.md. It is unclear what are the conditions that slang-llvm needs to be rebuilt locally. An issue is filed for it, #4812
* Update CONTRIBUTION.md for path to slang-test.exe (#4619)Jay Kwak2024-07-12
| | | The path to slang-test.exe has been changed recently and it needs to be updated on the document.
* Update CONTRIBUTION.md after CI side changes (#4598)Jay Kwak2024-07-10
| | | | | | | | | * Update CONTRIBUTION.md after CI side changes * Fix a typo --------- Co-authored-by: Yong He <yonghe@outlook.com>
* This commit increases the minimum CMake version from 3.20 to 3.25. (#4193)Jay Kwak2024-05-20
| | | | | I was trying to see if I can lower it to 3.16, but I found that we are currently using CMake feature that requires a version 3.25 not 3.20. This finding is not new. I made a similar change to CMakePresets.json a few days ago. At that time, I didn't realize that the same change had to be made for CMakeList.txt as well.
* Add warning about CMake version on CONTRIBUTION.mdJay Kwak2024-05-17
| | | | | Currently CMake version is required to be 3.20 or above. The version requirement is properly defined in our CMakeList.txt file. But older versions of CMake may not even print an error about the version requirement.
* Update CONTRIBUTION.mdJay Kwak2024-05-13
| | | Clarify which `slang.sln` file needs to be used for cmake workflow.
* Updating CONTRIBUTION guide to use CMake (#4017)Jay Kwak2024-04-24
| | | | | | | | | | | | | | | | | | | | | Releated to #3703 Removing the build instruction with Premake and replacing it with an instruction with CMake. It is because we are going to move over to CMake anytime soon. Bumping the required CMake version to 3.25.0. When CMakePresets.json has "version:6", it requires CMake version to be 3.25 or above. See the URL below for more information, https://cmake.org/cmake/help/latest/release/3.25.html CMakeLists.txt copies the prebuilt binary files from external/slang-binaries/bin/windows-x64 CMakeLists.txt was copying "slang-llvm.dll" to build/Release/lib directory when it should have been build/Release/bin. It made slang-test to ignore all FILECHECK tests. This is fixed. Co-authored-by: Yong He <yonghe@outlook.com>
* Adding CONTRIBUTION.md (#3472)Jay Kwak2024-01-23
* Adding CONTRIBUTION.md Fixes #3372 Adding CONTRIBUTION.md that describes the workflow for the contributors at more details. * Add instructions for PR process in CONTRIBUTE.me This commit adds an instruction of how to handle the case when you got feedbacks during Pull Request process. * Fix a formatting problem for Code Style When a word is wrapped with "lessThen" and "greaterThan" characters, it may disappear on the result based on the formatting syntax of .MD file. They need to be wrapped with a single back-tick character to avoid the problem. --------- Co-authored-by: Yong He <yonghe@outlook.com>