Compare commits
No commits in common. "5c278fc915fbc98c4404501bbc1afffa738ae653" and "82a13d8c3d840f10c82331e5b4132c1354f7c99c" have entirely different histories.
5c278fc915
...
82a13d8c3d
6 changed files with 10 additions and 19 deletions
7
Makefile
7
Makefile
|
@ -1,7 +0,0 @@
|
||||||
run:
|
|
||||||
@mdbook serve --open
|
|
||||||
deploy:
|
|
||||||
@mdbook clean
|
|
||||||
@mdbook build
|
|
||||||
@rsync -rauz --del --groupmap=erin:www-data --progress book/ erin@is-cute.ml:~/mercury-book
|
|
||||||
@git push -u origin main
|
|
|
@ -8,14 +8,15 @@
|
||||||
- [Security Features](development/design/security.md)
|
- [Security Features](development/design/security.md)
|
||||||
- [Microkernel](development/design/kernel.md)
|
- [Microkernel](development/design/kernel.md)
|
||||||
- [GUI](development/design/gui.md)
|
- [GUI](development/design/gui.md)
|
||||||
- [Filesystem](development/design/filesystem.md)
|
- [Filesystem](development/filesystem.md)
|
||||||
- [Configuring a Build Environment](development/environment.md)
|
- [Configuring a Build Environment](development/environment.md)
|
||||||
- [Development Workflow](development/workflow.md)
|
- [Development Workflow](development/workflow.md)
|
||||||
|
- [Running Tests](development/tests.md)
|
||||||
- [Using the OS](user/README.md)
|
- [Using the OS](user/README.md)
|
||||||
- [Running in a Virtual Machine]()
|
- [Running in a Virtual Machine](user/virtual-machine.md)
|
||||||
- [Running on Baremetal]()
|
- [Running on Baremetal](user/baremetal.md)
|
||||||
- [General Use]()
|
- [General Use](user/use/README.md)
|
||||||
- [Working in the Shell]()
|
- [Working in the Shell](user/use/shell.md)
|
||||||
- [Navigating the GUI]()
|
- [Navigating the GUI](user/use/gui.md)
|
||||||
- [Configuring the System]()
|
- [Configuring the System](user/use/config.md)
|
||||||
- [Working with Actors]()
|
- [Working with Actors](user/use/actors.md)
|
||||||
|
|
1
src/development/tests.md
Normal file
1
src/development/tests.md
Normal file
|
@ -0,0 +1 @@
|
||||||
|
# Running Tests
|
|
@ -28,6 +28,3 @@ Use inline [rustdoc](https://doc.rust-lang.org/rustdoc/what-is-rustdoc.html) to
|
||||||
## 4. Push
|
## 4. Push
|
||||||
Push the code to a new branch in the repository.
|
Push the code to a new branch in the repository.
|
||||||
If it's ready and fully working, make a pull request to merge it into `main`.
|
If it's ready and fully working, make a pull request to merge it into `main`.
|
||||||
|
|
||||||
## 5. CI
|
|
||||||
Eventually, I want to have **CI** enabled, to allow automated tests, checking, and releases.
|
|
||||||
|
|
|
@ -1,2 +1 @@
|
||||||
# Using the OS
|
# Using the OS
|
||||||
Once we actually have a working `kernel`, information on running it will be added here!
|
|
||||||
|
|
Loading…
Reference in a new issue