Skip to content

Commit

Permalink
Merge pull request #216 from matttbe/merge-vng-init-submodule
Browse files Browse the repository at this point in the history
Drop `virtme-ng-init` submodule and import commits instead

People might have to do extra manual steps to sync with the last version, e.g.

    git submodule deinit virtme_ng_init
  • Loading branch information
matttbe authored Jan 8, 2025
2 parents a38cc40 + 360894c commit 07b109d
Show file tree
Hide file tree
Showing 11 changed files with 2,185 additions and 4 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Rust

on:
push:
branches:
- main
pull_request:

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

defaults:
run:
working-directory: ./virtme_ng_init

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
3 changes: 0 additions & 3 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +0,0 @@
[submodule "virtme_ng_init"]
path = virtme_ng_init
url = https://github.com/arighi/virtme-ng-init.git
1 change: 0 additions & 1 deletion virtme_ng_init
Submodule virtme_ng_init deleted from 9b1e02
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 07b109d

Please sign in to comment.