Skip to content

Commit

Permalink
Add 'virtme_ng_init/' from commit '9b1e02a0deb094a36741b6172fb7ea8dc7…
Browse files Browse the repository at this point in the history
…dd8ddb'

git-subtree-dir: virtme_ng_init
git-subtree-mainline: 89e8fa1
git-subtree-split: 9b1e02a

The different commits have been imported using:

  git subtree -P virtme_ng_init add git@github.com:arighi/virtme-ng-init.git main

Signed-off-by: Matthieu Baerts (NGI0) <matttbe@kernel.org>
  • Loading branch information
matttbe committed Jan 6, 2025
2 parents 89e8fa1 + 9b1e02a commit d2b8a2b
Show file tree
Hide file tree
Showing 9 changed files with 2,179 additions and 0 deletions.
22 changes: 22 additions & 0 deletions virtme_ng_init/.github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Rust

on:
push:
pull_request:

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: Coding style
run: cargo fmt -- --check
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
1 change: 1 addition & 0 deletions virtme_ng_init/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
86 changes: 86 additions & 0 deletions virtme_ng_init/Cargo.lock

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

11 changes: 11 additions & 0 deletions virtme_ng_init/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
[package]
name = "virtme-ng-init"
version = "0.1.0"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
nix = "0.26"
users = "0.11"
base64 = "0.21"
Loading

0 comments on commit d2b8a2b

Please sign in to comment.