A simple tool to test your application in a virtual machine like you want.
bash
cargo install continuous-testing
sh
echo "#!/bin/sh\n\nencore" >> .git/hooks/commit-msg
chmod +x .git/hooks/commit-msg
sh
encore
It's require Vagrant and Virtualbox installed on your system.
```yaml
watch: false # Turn on watch mode wait: 600 # The wait time directory: Encore # The tmp directory os: archlinux/archlinux # The box to use memory: 4096 # Memory to use cpus: 8 # Cpus to use showoutput: true # Disable or enable console output beforeinstall: # Command to run before install - pacman -Syyu --noconfirm install: # Command to install dependencies - pacman -Syyu gtk4 pango base base-devel git rustup --noconfirm afterinstall: # after install command - rustup --version beforescript: # Command to ruin before script - git clone https://github.com/taishingi/zuu - cd zuu || exit 1 - git log -1 --stat script: # The commands to run test - cargo build - cargo test aftersuccess: # Command after success to run - echo "success" afterfailure: # Command after failure to run - echo "failure" channels: # All rustup toolchains to support - stable - beta - nightly badgesoutput: assets/badges # The output directory for badges mus be exist badgesstyle: flatsquare # The style for badges like https://shields.io ```
sh
.
├──src
│ └── lib.rs
├──specs
│ ├── continuous.yml
│ └── README.md
├── Cargo.toml
├── LICENSE
└── README.md