{"id":40171183,"url":"https://github.com/aregtech/cpp-action-workflows","last_synced_at":"2026-01-19T17:06:04.001Z","repository":{"id":178739353,"uuid":"656691162","full_name":"aregtech/cpp-action-workflows","owner":"aregtech","description":"Here I collect some action workflows which can be useful for C/C++ developers","archived":false,"fork":false,"pushed_at":"2024-02-20T19:57:56.000Z","size":440,"stargazers_count":8,"open_issues_count":6,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-03-05T06:38:53.954Z","etag":null,"topics":["action-workflow","areg-sdk","clang","cmake-build","cpp","cygwin","examples","gcc","github-workflows","msbuild","msvc","workflows","yaml"],"latest_commit_sha":null,"homepage":"","language":"CMake","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/aregtech.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}},"created_at":"2023-06-21T12:47:30.000Z","updated_at":"2024-02-28T12:02:20.000Z","dependencies_parsed_at":"2024-02-01T20:51:18.942Z","dependency_job_id":null,"html_url":"https://github.com/aregtech/cpp-action-workflows","commit_stats":null,"previous_names":["aregtech/cpp-action-workflows"],"tags_count":0,"template":false,"template_full_name":"aregtech/areg-sdk-demo","purl":"pkg:github/aregtech/cpp-action-workflows","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aregtech%2Fcpp-action-workflows","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aregtech%2Fcpp-action-workflows/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aregtech%2Fcpp-action-workflows/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aregtech%2Fcpp-action-workflows/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aregtech","download_url":"https://codeload.github.com/aregtech/cpp-action-workflows/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aregtech%2Fcpp-action-workflows/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28577154,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-19T16:29:19.148Z","status":"ssl_error","status_checked_at":"2026-01-19T16:29:17.772Z","response_time":67,"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":["action-workflow","areg-sdk","clang","cmake-build","cpp","cygwin","examples","gcc","github-workflows","msbuild","msvc","workflows","yaml"],"created_at":"2026-01-19T17:06:03.930Z","updated_at":"2026-01-19T17:06:03.990Z","avatar_url":"https://github.com/aregtech.png","language":"CMake","readme":"# AREG SDK Demo Project\n\n---\n\n## Repository Status\n\n[![CMake](https://github.com/aregtech/cpp-action-workflows/actions/workflows/cmake.yml/badge.svg?branch=master)](https://github.com/aregtech/cpp-action-workflows/actions/workflows/cmake.yml)\n[![MSBuild](https://github.com/aregtech/cpp-action-workflows/actions/workflows/msbuild.yml/badge.svg?branch=master)](https://github.com/aregtech/cpp-action-workflows/actions/workflows/msbuild.yml)\n[![Cygwin](https://github.com/aregtech/cpp-action-workflows/actions/workflows/cygwin.yml/badge.svg)](https://github.com/aregtech/cpp-action-workflows/actions/workflows/cygwin.yml)\n\n---\n\n## Introduction\n\nWhile was developing the [AREG SDK](https://github.com/aregtech/areg-sdk/), I spent lot of time to look for various workflow actions to automate build and test run. I've seen many examples and experiments and finally decided to share my with others. These workflows for sure are not the optimal, it is out of the agenda, but I hope it is a good practice. Let's say, this is kind of playground.\n\nI've used [areg-sdk-demo](https://github.com/aregtech/areg-sdk-demo) template repository, it compiles with CMake, Make (_planned_), Microsoft Visual Studio and compiles with  Windows Subsystem for Linux (WSL). In addition, it has  [areg-sdk](https://github.com/aregtech/areg-sdk/) as a submodule and has google tests. So, it has enough complication.\n\n---\n\n## Clone Sources\n\nTo clone the  repository, follow these steps in your desired directory (such as the `projects` directory):\n\n* Run the following command **to clone the repository and its submodules**:\n   ```bash\n   git clone --recurse-submodules https://github.com/aregtech/cpp-action-workflows.git\n   ```\n   It is important to clone the AREG SDK *submodule* as well. This command ensures that both the main repository and its submodule are cloned.\n\n* If you have already cloned the main repository but missed cloning the submodule, you can **update the submodules** separately by running the following command:\n   ```bash\n   git submodule update --init --recursive\n   ```\n   This command initializes and updates the submodules within the repository.\n\n* The AREG SDK also has dependencies on [Google Unit Test](https://github.com/google/googletest), which is automatically cloned with the AREG SDK sources. **To update to the latest submodule sources**, use the following git command:\n   ```bash\n   git submodule update --remote --recursive\n   ```\n   This command updates the submodules, including the Google Unit Test submodule, to the latest version.\n\n---\n\n## Workflows\n\nThe workflows are located in the [.github/workflows](https://github.com/aregtech/cpp-action-workflows/tree/master/.github/workflows) directory. I'll periodically add and/or update them.\n\n---\n\n## License\n\nThe files and sources in this repository are provided under the [MIT License](https://github.com/aregtech/areg-sdk-demo/blob/main/LICENSE). They are offered without any warranty or restriction, allowing you the freedom to use them in any kind of project.\n\n---\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faregtech%2Fcpp-action-workflows","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faregtech%2Fcpp-action-workflows","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faregtech%2Fcpp-action-workflows/lists"}