Skip to content

Commit

Permalink
ci: add tests, examples
Browse files Browse the repository at this point in the history
  • Loading branch information
korewaChino committed Jul 2, 2024
1 parent aea73a8 commit 01fb370
Show file tree
Hide file tree
Showing 3 changed files with 99 additions and 7 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/release-crate.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Release Crate

on:
release:
types: [published]

jobs:
release:
environment: production
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Install Rust toolchain
uses: actions-rs/toolchain@v1 #@v1
with:
toolchain: stable
override: true

- uses: katyo/publish-crates@v2
name: Publish to crates.io
with:
registry-token: ${{ secrets.CRATES_IO_TOKEN }}
69 changes: 69 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
name: Rust

on:
push:
pull_request:

env:
CARGO_TERM_COLOR: always

jobs:
rustfmt:
if: (github.event_name != 'pull_request' && ! github.event.pull_request.head.repo.fork) || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork)
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: rustfmt

- name: Run rustfmt
run: cargo fmt -- --check
clippy:
if: (github.event_name != 'pull_request' && ! github.event.pull_request.head.repo.fork) || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork)
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
components: clippy

- name: Install required cargo
run: cargo install clippy-sarif sarif-fmt

- name: Run rust-clippy
run: cargo clippy
--all-features
--message-format=json | clippy-sarif | tee rust-clippy-results.sarif | sarif-fmt
continue-on-error: true

- name: Upload analysis results to GitHub
uses: github/codeql-action/upload-sarif@v3
with:
sarif_file: rust-clippy-results.sarif
wait-for-processing: true
test:
if: (github.event_name != 'pull_request' && ! github.event.pull_request.head.repo.fork) || (github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork)
runs-on: ubuntu-latest
container:
image: fedora:latest
# Since this crate creates a new chroot, it needs to be run in a privileged container
options: --privileged
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable

- name: Build
run: cargo build --verbose

- name: Run tests
run: cargo test --verbose
14 changes: 7 additions & 7 deletions examples/root.rs
Original file line number Diff line number Diff line change
Expand Up @@ -32,13 +32,13 @@ fn main() {
// get the current working directory
let cwd = std::env::current_dir().unwrap();
println!("Current working directory: {:?}", cwd);
Command::new("ls")
.arg("-la")
.arg("/host")
.spawn()
.unwrap()
.wait()
.unwrap();
// Command::new("ls")
// .arg("-la")
// .arg("/host")
// .spawn()
// .unwrap()
// .wait()
// .unwrap();
// container.exit_chroot().unwrap();


Expand Down

0 comments on commit 01fb370

Please sign in to comment.