Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Qix- committed Jan 17, 2025
0 parents commit 1636855
Show file tree
Hide file tree
Showing 18 changed files with 1,121 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
[build]
target = [ "x86_64-unknown-none", "aarch64-unknown-none" ]

[alias]
oro-doc = "doc --document-private-items"
37 changes: 37 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
root = true

[*]
indent_style = tab
indent_size = 4
tab_width = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[{*.gyp,*.yml,*.yaml}]
indent_style = space
indent_size = 2

[{*.py,*.asm}]
indent_style = space

[*.py]
indent_size = 4

[*.asm]
indent_size = 8

[{*.md,*.tsv}]
trim_trailing_whitespace = false

# Ideal settings - some plugins might support these.
[*.js]
quote_type = single

[{*.c,*.cc,*.h,*.hh,*.cpp,*.hpp,*.m,*.mm,*.mpp,*.js,*.java,*.go,*.rs,*.php,*.ng,*.jsx,*.ts,*.d,*.cs,*.swift}]
curly_bracket_next_line = false
spaces_around_operators = true
spaces_around_brackets = outside
# close enough to 1TB
indent_brace_style = K&R
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
github: 'qix-'
10 changes: 10 additions & 0 deletions .github/actions/rust/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: rust
description: Prepares the runner to use the Rust toolchain
runs:
using: "composite"
steps:
- name: Install Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
components: rustfmt, clippy, rustc-dev, rust-src, llvm-tools-preview
50 changes: 50 additions & 0 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Build and Lint
on:
push:
branches:
- master
pull_request:

env:
RUST_BACKTRACE: full

jobs:
lint-rustfmt:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- uses: ./.github/actions/rust
- name: Lint (rustfmt)
run: cargo fmt --all -- --check
lint-clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- uses: ./.github/actions/rust
- name: Lint (clippy)
run: cargo clippy -- -D warnings
lint-docs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- uses: ./.github/actions/rust
- name: Lint (rustdoc)
run: env RUSTFLAGS="-D warnings" RUSTDOCFLAGS="-D rustdoc::all" cargo oro-doc
build:
runs-on: ubuntu-latest
strategy:
matrix:
profile: ["dev", "release"]
steps:
- uses: actions/checkout@v4
with:
submodules: 'true'
- uses: ./.github/actions/rust
- name: Build
run: cargo build --profile ${{ matrix.profile }}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/target/
__pycache__/
*.pyc
87 changes: 87 additions & 0 deletions .rustfmt.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,87 @@
style_edition = "2024"
unstable_features = true

# Non-default settings
combine_control_expr = false
hex_literal_case = "Upper"
enum_discrim_align_threshold = 30
force_multiline_blocks = true
format_code_in_doc_comments = true
format_generated_files = false
format_macro_matchers = true
format_strings = true
hard_tabs = true
imports_granularity = "Crate"
newline_style = "Unix"
normalize_comments = true
reorder_impl_items = true
group_imports = "StdExternalCrate"
struct_field_align_threshold = 10
use_field_init_shorthand = true
use_try_shorthand = true

# Default settings
#
# We duplicate these in most cases from the defaults
# just so changes to the defaults don't affect CI
# or cause clutter in commits.
#
# If you've noticed a default has changed and should
# be updated here to match it, open a PR with both
# the change as well as the re-formatted codebase.
# No initial issue is necessary.
array_width = 60
attr_fn_like_width = 70
binop_separator = "Front"
blank_lines_lower_bound = 0
blank_lines_upper_bound = 1
brace_style = "SameLineWhere"
chain_width = 60
# color is skipped; we don't care about this default
# comment_width is skipped; we disable wrap_comments
condense_wildcard_suffixes = false
control_brace_style = "AlwaysSameLine"
# disable_all_formatting is skipped; this is slated for removal and is useless to us
# edition is skipped; it should be picked up by Cargo.toml files
empty_item_single_line = true
error_on_line_overflow = false
error_on_unformatted = false
# fn_args_layout is skipped; it is deprecated and renamed to fn_params_layout
fn_call_width = 60
fn_params_layout = "Tall"
fn_single_line = false
force_explicit_abi = true
doc_comment_code_block_width = 100
format_macro_bodies = true
skip_macro_invocations = []
ignore = []
imports_indent = "Block"
imports_layout = "Mixed"
indent_style = "Block"
inline_attribute_width = 0
match_arm_blocks = true
match_arm_leading_pipes = "Never"
match_block_trailing_comma = false
merge_derives = true
normalize_doc_attributes = false
overflow_delimited_expr = false
remove_nested_parens = true
reorder_imports = true
reorder_modules = true
short_array_element_width_threshold = 10
skip_children = false
single_line_if_else_max_width = 50
single_line_let_else_max_width = 50
space_after_colon = true
space_before_colon = false
spaces_around_ranges = false
struct_lit_single_line = true
struct_lit_width = 18
struct_variant_width = 35
tab_spaces = 4
trailing_comma = "Vertical"
trailing_semicolon = true
type_punctuation_density = "Wide"
use_small_heuristics = "Default"
where_single_line = false
wrap_comments = false
6 changes: 6 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Oro Operating System Contribution Guidelines

The main Oro Operating System repository follows the same
contribution guidelines as the [Oro kernel](https://github.com/oro-os/kernel).

Please see the [Oro kernel contribution guidelines](https://github.com/oro-os/kernel/blob/master/CONTRIBUTING.md) for more information.
159 changes: 159 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 1636855

Please sign in to comment.