From fb6c77ecfc688d8493f0525147d27e59eae85ddc Mon Sep 17 00:00:00 2001 From: Christoph Thiede <38782922+LinqLover@users.noreply.github.com> Date: Thu, 30 Dec 2021 11:27:28 +0100 Subject: [PATCH] smalltalkci: add page (#7580) --- pages/common/smalltalkci.md | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 pages/common/smalltalkci.md diff --git a/pages/common/smalltalkci.md b/pages/common/smalltalkci.md new file mode 100644 index 0000000000..970bb0469b --- /dev/null +++ b/pages/common/smalltalkci.md @@ -0,0 +1,28 @@ +# smalltalkci + +> Framework for testing Smalltalk projects with GitHub Actions, Travis CI, AppVeyor, GitLab CI, and others. +> More information: . + +- Run tests for a configuration file: + +`smalltalkci {{path/to/.smalltalk.ston}}` + +- Run tests for the `.smalltalk.ston` configuration in the current directory: + +`smalltalkci` + +- Debug tests in headful mode (show VM window): + +`smalltalkci --headful` + +- Download and prepare a well-known smalltalk image for the tests: + +`smalltalkci --smalltalk {{Squeak64-Trunk}}` + +- Specify a custom Smalltalk image and VM: + +`smalltalkci --image {{path/to/Smalltalk.image}} -- vm {{path/to/vm}}` + +- Clean up caches and delete builds: + +`smalltalkci --clean`