12 repos
Build Systems — DevOps & Infrastructure
We curate 12 GitHub repositories matching devops & infrastructure · Build Systems. Refine with filters or upvote what's useful.
Build Systems — DevOps & Infrastructure
- sindresorhus/awesome
sindresorhus/awesome
438,690This project is a community-curated knowledge base that organizes vast technical ecosystems into a hierarchical, human-readable directory. It serves as a comprehensive index of libraries, frameworks, and methodologies, designed to facilitate discovery and professional development across the entire spectrum of software engineering and computer science. The directory distinguishes itself through a decentralized, peer-review model where the taxonomy evolves collaboratively via standard version-control workflows. By utilizing a markdown-based, flat-file structure, the project ensures that its curated knowledge remains platform-agnostic, accessible, and easily maintainable by the community. The repository covers a broad capability surface, including back-end and front-end development, data science, decentralized systems, and security practices. It also provides extensive educational resources, such as structured learning roadmaps, professional development guides, and specialized indexes for programming languages, hardware, and game development. The entire knowledge base is maintained as a version-controlled repository, allowing for continuous refinement and integration of new technical resources through community-driven pull requests.
awesomeawesome-listlists - torvalds/linux
torvalds/linux
217,986The Linux kernel is a monolithic operating system kernel that serves as the primary interface between computer hardware and software applications. It provides the foundational infrastructure for managing system resources, including memory allocation, process scheduling, and synchronization primitives. The project includes comprehensive support for diverse storage architectures through its filesystem suite and manages complex networking, virtualization, and power management subsystems. Beyond core system management, the kernel offers extensive frameworks for hardware interaction, covering input devices, audio, sensors, and various bus communication protocols. It incorporates diagnostic tools for system observability, security mechanisms for integrity protection, and a kernel-level virtual machine for sandboxed execution. The project maintains stability through defined interface guarantees and supports modular development, including integrated support for memory-safe programming.
C - microsoft/vscode
microsoft/vscode
181,912This project is a cross-platform code editor designed for software development, offering a comprehensive suite of tools for text editing, workspace management, and task automation. It includes native support for version control, an integrated terminal, and a flexible task runner that allows for the execution of build, test, and deployment workflows directly within the environment. The editor features an extensive AI-driven development assistant system, which provides conversational chat interfaces, inline code suggestions, and autonomous agents capable of executing multi-step coding tasks. These AI capabilities are supported by a framework for implementation planning, context curation, and custom agent configuration, allowing developers to tailor the editor's behavior to specific project standards. To support diverse development needs, the editor provides a robust extension framework that enables the integration of language-specific tools, custom UI elements, and specialized build system support. Administrative controls are available for enterprise environments, allowing for the management of extensions, network configurations, and compliance policies. The software is available as a downloadable application with support for portable execution and frequent release channels.
TypeScripteditorelectronmicrosoft - ollama/ollama
ollama/ollama
162,972Ollama provides a framework for running and managing local machine learning models. It includes a command-line interface for model lifecycle management, such as creation, embedding generation, and configuration, alongside a stable API for programmatic interaction across multiple programming languages. The platform supports the import of models and adapters in various formats, including GGUF and Safetensors. Users can define custom model behaviors, prompt templates, and system messages through a configuration file format. It also offers tools for fine-tuning models with LoRA adapters and applying quantization to manage memory usage and inference performance. The software includes infrastructure for cross-platform builds, hardware acceleration for specific graphics processing units, and system-level service management. Installation is supported through automated scripts, and the environment provides utilities for monitoring runtime logs and testing core functionality.
Godeepseekgemmagemma3 - golang/go
golang/go
132,649Go is a statically typed, compiled programming language designed for building scalable, concurrent software. It provides a memory-safe execution environment that combines a high-performance runtime with a self-hosting compiler toolchain, enabling the creation of statically linked machine code binaries without external dependencies. The language is built around a structural type system that uses interfaces for polymorphism and a concurrency model based on lightweight, stack-based coroutines that communicate through channels. The language distinguishes itself through a runtime that features a concurrent, low-latency garbage collector and a compiler that performs escape analysis to optimize memory allocation. It includes a comprehensive, integrated toolchain that supports the entire software lifecycle, from dependency management and versioning to profiling, testing, and diagnostic analysis. These tools are designed to maintain consistent, reproducible builds and high code quality across complex, distributed systems. Beyond its core runtime and language features, Go provides standardized interfaces for database-driven application development, including support for connection pooling and secure query execution. The ecosystem is supported by a unified command-line interface that simplifies project organization, module distribution, and performance tuning. The project maintains extensive documentation, including formal language specifications, memory models, and installation guides for various platforms.
Gogogolanglanguage - godotengine/godot
godotengine/godot
106,855Godot is a comprehensive, node-based game engine designed for building interactive 2D and 3D applications. It provides an integrated development environment that utilizes a hierarchical scene system to organize objects, propagate spatial transformations, and manage lifecycle events. The engine functions as a cross-platform development suite, allowing developers to author, test, and export software to desktop, mobile, and web environments from a single, unified codebase. The engine distinguishes itself through a modular, component-based architecture that relies on signals-based decoupling for event-driven communication between objects. It features a server-side rendering architecture that separates high-level scene logic from low-level rendering commands, alongside a platform-agnostic abstraction layer that ensures consistent hardware interaction. Developers can further customize their workflow using a plugin-based API that allows for the injection of custom inspectors, tools, and asset importers directly into the editor interface. The platform supports high-performance simulation through a variant-based dynamic typing system and centralized resource management, which handles memory-efficient sharing of textures, models, and audio data. The engine also provides extensive developer tooling for compiling custom binaries and configuring build parameters to meet specific production requirements. Comprehensive documentation, including an offline-accessible class reference and community-maintained tutorials, is available to assist with project development and engine mastery.
C++game-developmentgame-enginegamedev - tauri-apps/tauri
tauri-apps/tauri
102,979Tauri is a cross-platform framework for building desktop applications that combine web-based user interfaces with a memory-safe systems-language backend. It functions as a secure runtime that hosts web content within native windowing containers, allowing developers to leverage existing web technologies while maintaining high-performance native logic. By compiling applications into small-footprint, platform-specific binaries, the framework avoids bundling heavy runtime environments, resulting in lightweight executables. The project distinguishes itself through a capability-based security model that enforces granular access control over system resources and native APIs. Communication between the isolated frontend webview and the privileged backend is managed through a secure, asynchronous message-passing bridge. This architecture ensures that native system capabilities are exposed to the web interface only through strictly defined, configuration-driven permissions. The framework provides a modular plugin system that allows for the extension of core functionality through reusable backend components. Development is supported by a unified workflow that includes project scaffolding, a local development server with hot-reloading for both frontend and backend assets, and automated tools for managing the application lifecycle and binary distribution. The system also includes built-in support for orchestrating remote application updates and verifying package integrity.
Rustdesktop-apphigh-performancemobile-app - bitcoin/bitcoin
bitcoin/bitcoin
88,190This project is a cryptographic consensus engine and distributed ledger client that functions as a peer-to-peer network node. It enables decentralized network participation by allowing users to independently validate transactions and blocks, ensuring data integrity and consensus without reliance on a centralized authority. The software utilizes an unspent transaction output model to track ownership and verify state transitions across the network. What distinguishes this implementation is its commitment to verifiable security and deterministic operation. It features a reproducible build system that allows users to independently confirm that distributed binaries match the original source code, providing a high level of security assurance. The system enforces consensus rules through a script-based transaction validation mechanism and maintains network synchronization via an asynchronous peer-to-peer gossip protocol. The software provides a secure, event-driven remote procedure call interface, enabling external applications to programmatically manage digital assets and query blockchain data. To maintain performance and reliability, the node employs multi-threaded block validation and a key-value database for efficient chain state lookups. The project also includes comprehensive automated testing suites and rigorous infrastructure hardening practices to mitigate vulnerabilities and ensure stability across updates. Detailed documentation for the remote procedure call interface is available for numerous versions, and users can retrieve binaries through various distribution channels, including direct downloads and package managers, with support for cryptographic signature verification.
C++bitcoinc-plus-pluscryptocurrency - oven-sh/bun
oven-sh/bun
87,491Bun is a high-performance runtime environment designed to execute JavaScript and TypeScript applications with minimal latency and high throughput. Built on a native core implemented in Zig, it provides a unified execution engine that leverages JavaScriptCore for efficient memory management and low-latency startup. The project functions as an all-in-one toolchain, integrating a native bundler, transpiler, package manager, and test runner into a single command-line interface. What distinguishes Bun is its focus on native system integration and developer productivity. It features a high-performance server runtime with built-in support for HTTP, WebSockets, and SQLite database management, allowing for the creation of scalable network applications without external dependencies. The platform includes a sophisticated build pipeline that supports incremental bundling, build-time macro execution, and the generation of standalone, cross-platform binaries. It also provides a low-level foreign function interface, enabling direct execution of native C and C++ libraries to bypass traditional runtime bottlenecks. The project covers a broad capability surface, including automated task scheduling, file-system-based routing, and comprehensive dependency management. It offers built-in utilities for cryptographic hashing, secure password verification, and real-time hot module replacement during development. Additionally, the runtime maintains compatibility with existing ecosystems by implementing standard APIs and module resolution patterns, facilitating seamless integration into existing workflows. Bun is distributed as a command-line tool that manages the entire application lifecycle, from dependency installation and auditing to production asset building and binary distribution.
Zigbunbundlerjavascript - gohugoio/hugo
gohugoio/hugo
86,693Hugo is a high-performance static site generator that transforms source content and templates into optimized web assets. Built with a focus on speed and scalability, it provides a comprehensive framework for managing large-scale documentation and editorial projects through structured content organization, taxonomies, and a flexible template-driven rendering engine. The project distinguishes itself through a sophisticated build system that utilizes incremental caching to minimize redundant processing during site updates. It supports complex content requirements by enabling multidimensional modeling, which allows for the generation of diverse page variations from a single source, and multi-format output rendering that can produce HTML, JSON, RSS, or CSV simultaneously. Authors can extend their content using a modular shortcode system, while the integrated asset pipeline handles the transformation, minification, and optimization of images and stylesheets directly within the build lifecycle. Beyond its core generation capabilities, Hugo offers a robust command-line interface for managing the entire project lifecycle, including real-time development previews and automated deployment workflows. The system also features a modular dependency architecture, allowing users to import and version shared themes, layouts, and configuration components to maintain consistent design systems across multiple projects.
Goblog-enginecmscontent-management-system - astral-sh/uv
astral-sh/uv
79,476uv is a high-performance Python package manager and project build tool designed to handle dependency resolution, virtual environment orchestration, and Python interpreter management. It functions as a comprehensive workspace orchestrator, enabling developers to manage complex, multi-package repositories and ensure reproducible builds across different platforms. The tool distinguishes itself through its use of a global, content-addressable cache and hard-link-based environment provisioning, which allow for near-instant environment creation and minimal disk usage. It employs a high-performance solver to satisfy complex dependency graphs and supports ephemeral script execution, allowing users to run standalone Python scripts with ad-hoc dependencies without manual setup. Beyond core package management, the project provides a unified command-line interface that integrates with CI/CD pipelines and supports common workflows like building distributions and managing private package indexes. It maintains compatibility with standard tools, offering a drop-in replacement for common environment and package management commands. Comprehensive documentation is available on the project website, covering installation guides, command references, and configuration settings for various development and production environments.
Rustpackagingpythonresolver - vitejs/vite
vitejs/vite
78,295Vite is a frontend build toolchain that provides a unified development and production pipeline for modern web applications. It functions as a modular, environment-agnostic build engine that leverages native ES modules to serve source code directly to the browser, eliminating the need for expensive bundling during the development phase. By maintaining an environment-aware module graph, it supports concurrent development across client, server, and custom runtime environments. The project distinguishes itself through a high-performance development server that utilizes a hot module replacement protocol to propagate granular code updates via WebSockets, allowing for stateful application patches without full page reloads. Its architecture is built on a plugin-based transformation pipeline that ensures consistent code processing across both development and production builds. Additionally, it features advanced dependency pre-bundling, which converts CommonJS and UMD dependencies into optimized ESM chunks to improve loading efficiency and startup performance. Vite covers a broad capability surface, including comprehensive support for server-side rendering, multi-page application architectures, and static asset management. It provides extensive programmatic APIs for controlling code transformation, server lifecycles, and environment variable management. The toolchain also includes built-in optimizations for production, such as automatic code splitting, preload directive generation, and high-speed TypeScript transpilation. The project is configured through a standard file-based system, allowing developers to extend functionality via custom plugins and hooks that integrate directly into the build and runtime logic.
TypeScriptbuild-tooldev-serverfrontend