summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/cmake.yml
AgeCommit message (Collapse)Author
2024-03-05Update cmake.ymlRay
2024-03-05Update cmake.ymlRay
2024-03-05Update cmake.ymlRay
2024-03-05Update cmake.ymlRay
2024-03-04Update cmake.ymlRay
2024-02-18Updated workflowsRay
2022-11-28Update github workflowsRay
2022-11-15Update cmake.ymlRay
2022-05-31chore: Set permissions for GitHub actions (#2496)Naveen
Restrict the GitHub token permissions only to the required ones; this way, even if the attackers will succeed in compromising your workflow, they won’t be able to do much. - Included permissions for the action. https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs [Keeping your GitHub Actions and workflows secure Part 1: Preventing pwn requests](https://securitylab.github.com/research/github-actions-preventing-pwn-requests/) Signed-off-by: naveen <[email protected]>
2021-10-25made it so the cmake workflow runs on cmake related changes (#2083)mandar1jn
2021-10-24Updated workflow files (#2079)mandar1jn
* Updated workflow files * added the manual trigger to the android workflow
2021-02-11Update cmake.ymlRay
2021-01-25Removing test file. (#1545)hristo
This test file is just testing compilation with the library works correctly but is no longer needed because: - it is not cross platform - it taps into the CTest system which is better suited for real unit/integration tests - it can be incorporated into the pipeline of github actions instead in the future
2021-01-24Added a windows and linux simple compile with cmake (#1543)hristo
* Added a windows and linux simple compile with cmake Will expand on the file but it will be nice to know if they are some extremely breaking changes in the future. cmake.yml will run two task one for linux build and one for windows build essentially checking that both are working. We can add all platforms later. * Renaming the task to "CMake Builds" and removing the test step. Commented out the test step as I don't yet know what the two bash files are doing but they are failing the build.