[PR #1290] [MERGED] feat: add Windows CI back #1892

Open
opened 2026-01-29 15:25:52 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/1290
Author: @Panquesito7
Created: 7/28/2023
Status: Merged
Merged: 9/8/2023
Merged by: @Panquesito7

Base: masterHead: add_windows


📝 Commits (1)

  • ce098ce feat: add Windows CI back

📊 Changes

16 files changed (+547 additions, -81 deletions)

View changed files

📝 .github/workflows/awesome_workflow.yml (+2 -2)
📝 CMakeLists.txt (+6 -7)
📝 DIRECTORY.md (+2 -0)
📝 client_server/CMakeLists.txt (+15 -9)
client_server/bool.h (+55 -0)
client_server/fork.h (+298 -0)
📝 client_server/remote_command_exec_udp_client.c (+14 -5)
📝 client_server/remote_command_exec_udp_server.c (+14 -5)
📝 client_server/tcp_full_duplex_client.c (+18 -4)
📝 client_server/tcp_full_duplex_server.c (+26 -5)
📝 client_server/tcp_half_duplex_client.c (+14 -5)
📝 client_server/tcp_half_duplex_server.c (+14 -5)
📝 developer_tools/min_printf.h (+5 -1)
📝 dynamic_programming/matrix_chain_order.c (+58 -30)
📝 graphics/CMakeLists.txt (+1 -1)
📝 searching/exponential_search.c (+5 -2)

📄 Description

Description of Change

  • Add Windows builds back.
    • Thanks to @realstealthninja for their help!
    • Closes #1274.

Checklist

  • Added description of change
  • Added file name matches File name guidelines
  • Added tests and example, test must pass
  • Relevant documentation/comments is changed or added
  • PR title follows semantic commit guidelines
  • Search previous suggestions before making a new one, as yours may be a duplicate.
  • I acknowledge that all my contributions will be made under the project's license.

Notes:


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/TheAlgorithms/C/pull/1290 **Author:** [@Panquesito7](https://github.com/Panquesito7) **Created:** 7/28/2023 **Status:** ✅ Merged **Merged:** 9/8/2023 **Merged by:** [@Panquesito7](https://github.com/Panquesito7) **Base:** `master` ← **Head:** `add_windows` --- ### 📝 Commits (1) - [`ce098ce`](https://github.com/TheAlgorithms/C/commit/ce098ceb9821644cb509669e91638086aa8786a4) feat: add Windows CI back ### 📊 Changes **16 files changed** (+547 additions, -81 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/awesome_workflow.yml` (+2 -2) 📝 `CMakeLists.txt` (+6 -7) 📝 `DIRECTORY.md` (+2 -0) 📝 `client_server/CMakeLists.txt` (+15 -9) ➕ `client_server/bool.h` (+55 -0) ➕ `client_server/fork.h` (+298 -0) 📝 `client_server/remote_command_exec_udp_client.c` (+14 -5) 📝 `client_server/remote_command_exec_udp_server.c` (+14 -5) 📝 `client_server/tcp_full_duplex_client.c` (+18 -4) 📝 `client_server/tcp_full_duplex_server.c` (+26 -5) 📝 `client_server/tcp_half_duplex_client.c` (+14 -5) 📝 `client_server/tcp_half_duplex_server.c` (+14 -5) 📝 `developer_tools/min_printf.h` (+5 -1) 📝 `dynamic_programming/matrix_chain_order.c` (+58 -30) 📝 `graphics/CMakeLists.txt` (+1 -1) 📝 `searching/exponential_search.c` (+5 -2) </details> ### 📄 Description #### Description of Change <!-- Thank you for your Pull Request. Please provide a description above and review the requirements below. Contributors guide: https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md --> - Add Windows builds back. - Thanks to @realstealthninja for their help! - Closes #1274. #### Checklist <!-- Remove items that do not apply. For completed items, change [ ] to [x]. --> - [x] Added description of change - [ ] ~Added file name matches [File name guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#File-Name-guidelines)~ - [ ] ~Added tests and example, test must pass~ - [ ] ~Relevant documentation/comments is changed or added~ - [x] PR title follows semantic [commit guidelines](https://github.com/TheAlgorithms/C/blob/master/CONTRIBUTING.md#Commit-Guidelines) - [x] Search previous suggestions before making a new one, as yours may be a duplicate. - [x] I acknowledge that all my contributions will be made under the project's license. Notes: <!-- Please add a one-line description for developers or pull request viewers --> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 15:25:52 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#1892