The 40ants-ci Reference Manual

This is the 40ants-ci Reference Manual, generated automatically by Declt version 4.0 beta 2 "William Riker" on Sun Dec 15 04:36:17 2024 GMT+0.

Table of Contents


1 Introduction


2 Systems

The main system appears first, followed by any subsystem dependency.


2.1 40ants-ci

A tool simplify continuous deployment for Common Lisp projects.

Author

Alexander Artemenko

Home Page

https://40ants.com/ci/

Source Control

(GIT https://github.com/40ants/ci)

License

BSD

Long Description

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-40README-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

# 40Ants-CI - Github Workflow Generator

[![](https://github-actions.40ants.com/40ants/ci/matrix.svg)][de0b]

![](http://quickdocs.org/badge/ci.svg)

This is a small utility, which can generate GitHub workflows for Common Lisp
projects.

It generates workflow for running tests and building docs. These workflows
use [40ants/run-tests][8469] and [40ants/build-docs][b882]
actions and [‘SBLint‘][2f94] to check code for compilation errors.

<a id="40-ants-ci-asdf-system-details"></a>

## 40ANTS-CI ASDF System Details

* Description: A tool simplify continuous deployment for Common Lisp projects.
* Licence: ‘BSD‘
* Author: Alexander Artemenko
* Homepage: [https://40ants.com/ci/][3f72]
* Source control: [GIT][e681]
* Depends on: [alexandria][8236], [serapeum][c41d], [str][ef7f], [yason][aba2]

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-40REASONS-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

## Reasons to Use

* This system hides all entrails related to caching.
* Includes a few ready to use job types.
* Custom job types can be defined and distributed as separate ‘ASDF‘ systems.
* You don’t have to write ‘YAML‘ anymore!

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-40QUICKSTART-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

## Quickstart

This system allows you to define workflows in the lisp code. The best way is to make these
definitions a part of your ‘ASDF‘ system. This way ‘40ants-ci‘ ([‘1‘][900b] [‘2‘][b171]) will be able to
automatically understand for which system it builds a workflow.

Each workflow consists of jobs and each job is a number of steps.

There are three predefine types of jobs and you can create your own. Predefined jobs
allows to reuse steps in multiple ‘CL‘ libraries.

In next examples, I’ll presume you are writing code in a file which is the part
of the package inferred ‘ASDF‘ system ‘EXAMPLE/CI‘. A file should have the following header:

“‘lisp
(defpackage #:example/ci
(:use #:cl)
(:import-from #:40ants-ci/workflow
#:defworkflow)
(:import-from #:40ants-ci/jobs/linter)
(:import-from #:40ants-ci/jobs/run-tests)
(:import-from #:40ants-ci/jobs/docs))
“‘
<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-40JOB-TYPES-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

### Job Types

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-40AUTOTAG-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

#### Autotag

This job is automates git tag placement on the commit where you have changed the ChangeLog.md.

This can be a useful to automate package deployment and releases. You update the changelog,
a job pushes a new git tag and the next action triggers on this tag and build a release.

Or you if you publish your library at Quicklisp distribution, then you can change
it’s source type to the ‘latest-github-tag‘ to provide more stable releases to your
users. This way you commits into master will be ignored until you change the changelog and
git tag will be pushed. Here is an [example][1cec] how to setup this kind of quicklisp project source.

“‘lisp
(defworkflow release
:on-push-to "master"
:jobs ((40ants-ci/jobs/autotag:autotag)))
“‘
<a id="x-2840ANTS-CI-2FJOBS-2FAUTOTAG-3AAUTOTAG-20FUNCTION-29"></a>

##### [function](a010) ‘40ants-ci/jobs/autotag:autotag‘ &key (filename \*default-filename\*) (regex \*default-regex\*) (tag-prefix \*default-tag-prefix\*) (token-pattern \*default-token-pattern\*) env

Creates a job which will run autotagger to create a new git tag for release.

<a id="x-2840ANTS-CI-2FJOBS-2FAUTOTAG-3AAUTOTAG-20CLASS-29"></a>

##### [class](6edc) ‘40ants-ci/jobs/autotag:autotag‘ (job)

This type of the job created a git tag when finds a new tag in specified file.

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-40LINTER-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

#### Linter

The simplest job type is linter. It loads a

“‘lisp
(defworkflow linter
:on-pull-request t
:jobs ((40ants-ci/jobs/linter:linter)))
“‘
When you’ll hit ‘C-c C-c‘ on this definition,
it will generate ‘.github/workflows/linter.yml‘ with following content:

“‘json
{
"name": "LINTER",
"on": {
"pull_request": null
},
"jobs": {
"linter": {
"runs-on": "ubuntu-latest",
"env": {
"OS": "ubuntu-latest",
"QUICKLISP_DIST": "quicklisp",
"LISP": "sbcl-bin"
},
"steps": [
{
"name": "Checkout Code",
"uses": "actions/checkout@v4"
},
{
"name": "Setup Common Lisp Environment",
"uses": "40ants/setup-lisp@v4",
"with": {
"asdf-system": "example"
}
},
{
"name": "Install SBLint",
"run": "qlot exec ros install cxxxr/sblint",
"shell": "bash"
},
{
"name": "Run Linter",
"run": "qlot exec sblint example.asd",
"shell": "bash"
}
]
}
}
}
“‘
Here you can see, a few steps in the job:

1. Checkout the code.
2. Install Roswell & Qlot using [40ants/setup-lisp][8de1] action.
3. Install [‘SBLint‘][2f94].
4. Run linter for ‘example.asd‘.

Another interesting thing is that this workflow automatically uses ‘ubuntu-latest‘ ‘OS‘,
‘Quicklisp‘ and ‘sbcl-bin‘ Lisp implementation. Later I’ll show you how to redefine these settings.

<a id="x-2840ANTS-CI-2FJOBS-2FLINTER-3ALINTER-20CLASS-29"></a>

##### [class](0953) ‘40ants-ci/jobs/linter:linter‘ (lisp-job)

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-40CRITIC-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

#### Critic

This job is similar to linter, but instead of ‘SBL‘int it runs
[Lisp Critic][2100].

Lisp Critic is a program which advices how to make you Common Lisp code more
idiomatic, readable and performant. Also, sometimes it might catch logical
errors in the code.

Here is how you can add this job type in your workflow:

“‘lisp
(defworkflow ci
:on-pull-request t
:jobs ((40ants-ci/jobs/critic:critic)))
“‘
Also, you might combine this job together with others, for example,
with linter:

“‘lisp
(defworkflow ci
:on-pull-request t
:jobs ((40ants-ci/jobs/linter:linter)
(40ants-ci/jobs/critic:critic)))
“‘
and they will be executed in parallel. See docs on [‘40ants-ci/jobs/critic:critic‘][484a] function
to learn about supported arguments.

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-40RUN-TESTS-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

#### Running Tests

Another interesting job type is ‘40ants-ci/jobs/run-tests:run-tests‘ ([‘1‘][e35d] [‘2‘][6cb7]).

When using this job type, make sure, your system
runs tests on ‘(ASDF:TEST-SYSTEM :system-name)‘ call
and signals error if something went wrong.

“‘lisp

(defworkflow ci
:on-push-to "master"
:by-cron "0 10 * * 1"
:on-pull-request t
:jobs ((40ants-ci/jobs/run-tests:run-tests
:coverage t)))
“‘
Here I’ve added a few options to the workflow:

* ‘by-cron‘ - sets a schedule.
* ‘on-push-to‘ - defines a branch or branches to track.

It will generate ‘.github/workflows/ci.yml‘ with following content:

“‘json
{
"name": "CI",
"on": {
"push": {
"branches": [
"master"
]
},
"pull_request": null,
"schedule": [
{
"cron": "0 10 * * 1"
}
]
},
"jobs": {

"run-tests": {
"runs-on": "ubuntu-latest",
"env": {
"OS": "ubuntu-latest",
"QUICKLISP_DIST": "quicklisp",
"LISP": "sbcl-bin"
},
"steps": [
{
"name": "Checkout Code",
"uses": "actions/checkout@v4"
},
{
"name": "Setup Common Lisp Environment",
"uses": "40ants/setup-lisp@v4",
"with": {
"asdf-system": "example"
}
},
{
"name": "Run Tests",
"uses": "40ants/run-tests@v2",
"with": {
"asdf-system": "example",
"coveralls-token": "${{ secrets.github_token }}"
}
}
]
}
}
}
“‘
The result is similar to the workflow generated for Linter,
but uses [40ants/setup-lisp][59d7] action
at the final step.

Also, I’ve passed an option ‘:coverage t‘ to the job. Thus coverage
report will be uploaded to [Coveralls.io][b60c] automatically.

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-40MATRIX-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

##### Defining a test Matrix

Lisp has many implementations and can be used on multiple platforms. Thus
it is a good idea to test our software on many combinations of ‘OS‘ and lisp
implementations. Workflow generator makes this very easy.

Here is an example of workflow definition with three dimentional matrix.
It not only tests a library under different lisps and ‘OS‘, but also checks
if it works with the latest Quicklisp and Ultralisp distributions:

“‘lisp
(defworkflow ci
:on-pull-request t
:jobs ((run-tests
:os ("ubuntu-latest"
"macos-latest")
:quicklisp ("quicklisp"
"ultralisp")
:lisp ("sbcl-bin"
"ccl-bin"
"allegro"
"clisp"
"cmucl")
:exclude (;; Seems allegro is does not support 64bit OSX.
;; Unable to install it using Roswell:
;; alisp is not executable. Missing 32bit glibc?
(:os "macos-latest" :lisp "allegro")))))
“‘
<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-40MULTIPLE-JOBS-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

##### Multiple jobs

Besides a build matrix, you might specify a multiple jobs of the same type,
but with different parameters:

“‘lisp
(defworkflow ci
:on-push-to "master"
:on-pull-request t
:jobs ((run-tests
:lisp "sbcl-bin")
(run-tests
:lisp "ccl-bin")
(run-tests
:lisp "allegro")))
“‘
This will generate a workflow with three jobs: "run-tests", "run-tests-2" and "run-tests-3".

Meaningful names might be specified as well:

“‘lisp
(defworkflow ci
:on-push-to "master"
:on-pull-request t
:jobs ((run-tests
:name "test-on-sbcl"
:lisp "sbcl-bin")
(run-tests
:name "test-on-ccl"
:lisp "ccl-bin")
(run-tests
:name "test-on-allegro"
:lisp "allegro")))
“‘
Here is how these jobs will look like in the GitHub interface:

![](https://user-images.githubusercontent.com/24827/151619261-2d49e2a6-bc5c-42db-aec5-674d9229a1b0.png)

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-40BUILD-DOCS-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

#### Building Docs

Third predefined job type is ‘40ants-ci/jobs/docs:build-docs‘ ([‘1‘][13b8] [‘2‘][1ddb]).
It uses [40ants/build-docs][613f]
action and will work only if your ‘ASDF‘ system uses a documentation builder supported by
[40ants/docs-builder][f2be].

To build docs on every push to master, just use this code:

“‘lisp

(defworkflow docs
:on-push-to "master"
:jobs ((40ants-ci/jobs/docs:build-docs)))
“‘
It will generate ‘.github/workflows/docs.yml‘ with following content:

“‘json

{
"name": "DOCS",
"on": {
"push": {
"branches": [
"master"
]
}
},
"jobs": {
"build-docs": {
"runs-on": "ubuntu-latest",
"env": {
"OS": "ubuntu-latest",
"QUICKLISP_DIST": "quicklisp",
"LISP": "sbcl-bin"
},
"steps": [
{
"name": "Checkout Code",
"uses": "actions/checkout@v4"
},
{
"name": "Setup Common Lisp Environment",
"uses": "40ants/setup-lisp@v4",
"with": {
"asdf-system": "example",
"qlfile-template": ""
}
},
{
"name": "Build Docs",
"uses": "40ants/build-docs@v1",
"with": {
"asdf-system": "example"
}
}
]
}
}
}
“‘
<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-40CACHING-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

### Caching

To significantly speed up our tests, we can cache installed Roswell,
Qlot and Common Lisp fasl files.

To accomplish this task, you don’t need to dig into GitHub’s docs anymore!
Just add one line ‘:cache t‘ to your workflow definition:

“‘lisp
(defworkflow docs
:on-push-to "master"
:cache t
:jobs ((40ants-ci/jobs/docs:build-docs)))
“‘
Here is the diff of the generated workflow file. It shows steps, added automatically:

“‘diff
modified .github/workflows/docs.yml
@@ -20,13 +20,40 @@
"name": "Checkout Code",
"uses": "actions/checkout@v4"
},
+ {
+ "name": "Grant All Perms to Make Cache Restoring Possible",
+ "run": "sudo mkdir -p /usr/local/etc/roswell\n sudo chown \"${USER}\" /usr/local/etc/roswell\n # Here the ros binary will be restored:\n sudo chown \"${USER}\" /usr/local/bin",
+ "shell": "bash"
+ },
+ {
+ "name": "Get Current Month",
+ "id": "current-month",
+ "run": "echo \"::set-output name=value::$(date -u \"+%Y-%m\")\"",
+ "shell": "bash"
+ },
+ {
+ "name": "Cache Roswell Setup",
+ "id": "cache",
+ "uses": "actions/cache@v3",
+ "with": {
+ "path": "qlfile\n qlfile.lock\n /usr/local/bin/ros\n ~/.cache/common-lisp/\n ~/.roswell\n /usr/local/etc/roswell\n .qlot", + "key": "${{ steps.current-month.outputs.value }}-${{ env.cache-name }}-ubuntu-latest-quicklisp-sbcl-bin-${{ hashFiles(’qlfile.lock’) }}"
+ }
+ },
+ {
+ "name": "Restore Path To Cached Files",
+ "run": "echo $HOME/.roswell/bin >> $GITHUB_PATH\n echo .qlot/bin >> $GITHUB_PATH",
+ "shell": "bash",
+ "if": "steps.cache.outputs.cache-hit == ’true’"
+ },
{
"name": "Setup Common Lisp Environment",
"uses": "40ants/setup-lisp@v4",
"with": {
"asdf-system": "40ants-ci",
"qlfile-template": ""
- }
+ },
+ "if": "steps.cache.outputs.cache-hit != ’true’"
},
{
“‘
<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-40DETAILS-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

## Details

‘TODO‘: I have to write a few chapters with details on additional job’s parameters
and a way how to create new job types.

But for now, I want to show a small example, how to define a workflow with a
job which takes care about lisp installation and then calls a custom step:

“‘lisp
(defworkflow ci
:on-push-to "master"
:by-cron "0 10 * * 1"
:on-pull-request t
:cache t
:jobs ((40ants-ci/jobs/lisp-job:lisp-job :name "check-ros-config"
:lisp "ccl-bin"
:steps ((40ants-ci/steps/sh:sh "Show Roswell Config"
"ros config")))))
“‘
Here we are using the class [‘40ants-ci/jobs/lisp-job:lisp-job‘][2f4c] which is base for most classes in this ‘ASDF‘ system
and pass a custom ‘40ants-ci/steps/sh:sh‘ ([‘1‘][4d70] [‘2‘][0f59]) step to it. This step will be called after the repostory checkout and ‘CCL-BIN‘ lisp installation.
so, thus when this step will run ‘ros config‘ command, it will output something like that:

“‘
asdf.version=3.3.5.3
ccl-bin.version=1.12.2
setup.time=3918000017
sbcl-bin.version=2.4.1
default.lisp=ccl-bin

Possible subcommands:
set
show
“‘
Pay attention to the ‘NAME‘ argument of [‘40ants-ci/jobs/lisp-job:lisp-job‘][2f4c] class. If you omit it, then default "lisp-job" name will be used.

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-40API-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

## API

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-4040ANTS-CI-3FPACKAGE-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

### 40ANTS-CI

<a id="x-28-23A-28-289-29-20BASE-CHAR-20-2E-20-2240ANTS-CI-22-29-20PACKAGE-29"></a>

#### [package](12d8) ‘40ants-ci‘

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-7C-4040ANTS-CI-3FFunctions-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

#### Functions

<a id="x-2840ANTS-CI-3AGENERATE-20FUNCTION-29"></a>

##### [function](1a25) ‘40ants-ci:generate‘ system &key path

Generates GitHub workflow for given ‘ASDF‘ system.

This function searches workflow definitions in all packages
of the given ‘ASDF‘ system.

If ‘PATH‘ argument is not given, workflow files will be written
to .github/workflow/ relarive to the ‘SYSTEM‘.

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-4040ANTS-CI-2FGITHUB-3FPACKAGE-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

### 40ANTS-CI/GITHUB

<a id="x-28-23A-28-2816-29-20BASE-CHAR-20-2E-20-2240ANTS-CI-2FGITHUB-22-29-20PACKAGE-29"></a>

#### [package](52e1) ‘40ants-ci/github‘

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-7C-4040ANTS-CI-2FGITHUB-3FGenerics-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

#### Generics

<a id="x-2840ANTS-CI-2FGITHUB-3AGENERATE-20GENERIC-FUNCTION-29"></a>

##### [generic-function](c1bb) ‘40ants-ci/github:generate‘ obj path

<a id="x-2840ANTS-CI-2FGITHUB-3APREPARE-DATA-20GENERIC-FUNCTION-29"></a>

##### [generic-function](b61b) ‘40ants-ci/github:prepare-data‘ obj

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-7C-4040ANTS-CI-2FGITHUB-3FVariables-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

#### Variables

<a id="x-2840ANTS-CI-2FVARS-3A-2ACURRENT-SYSTEM-2A-20-28VARIABLE-29-29"></a>

##### [variable](62a7) ‘40ants-ci/vars:*current-system*‘ -unbound-

When workflow is generated for ‘ASDF‘ system, this variable will contain a primary ‘ASDF‘ system.

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-4040ANTS-CI-2FJOBS-2FAUTOTAG-3FPACKAGE-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

### 40ANTS-CI/JOBS/AUTOTAG

<a id="x-28-23A-28-2822-29-20BASE-CHAR-20-2E-20-2240ANTS-CI-2FJOBS-2FAUTOTAG-22-29-20PACKAGE-29"></a>

#### [package](95d9) ‘40ants-ci/jobs/autotag‘

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-7C-4040ANTS-CI-2FJOBS-2FAUTOTAG-3FClasses-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

#### Classes

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-4040ANTS-CI-2FJOBS-2FAUTOTAG-24AUTOTAG-3FCLASS-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

##### AUTOTAG

<a id="x-2840ANTS-CI-2FJOBS-2FAUTOTAG-3AAUTOTAG-20CLASS-29"></a>

###### [class](6edc) ‘40ants-ci/jobs/autotag:autotag‘ (job)

This type of the job created a git tag when finds a new tag in specified file.

**Readers**

<a id="x-2840ANTS-CI-2FJOBS-2FAUTOTAG-3AFILENAME-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FAUTOTAG-3AAUTOTAG-29-29"></a>

###### [reader](2008) ‘40ants-ci/jobs/autotag:filename‘ (autotag) (:filename = \*default-filename\*)

File where to search for version numbers.

<a id="x-2840ANTS-CI-2FJOBS-2FAUTOTAG-3AREGEX-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FAUTOTAG-3AAUTOTAG-29-29"></a>

###### [reader](318b) ‘40ants-ci/jobs/autotag:regex‘ (autotag) (:regex = \*default-regex\*)

Regexp used to extract version numbers.

<a id="x-2840ANTS-CI-2FJOBS-2FAUTOTAG-3ATAG-PREFIX-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FAUTOTAG-3AAUTOTAG-29-29"></a>

###### [reader](9330) ‘40ants-ci/jobs/autotag:tag-prefix‘ (autotag) (:tag-prefix = \*default-tag-prefix\*)

Tag prefix.

<a id="x-2840ANTS-CI-2FJOBS-2FAUTOTAG-3ATOKEN-PATTERN-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FAUTOTAG-3AAUTOTAG-29-29"></a>

###### [reader](b69a) ‘40ants-ci/jobs/autotag:token-pattern‘ (autotag) (:token-pattern = \*default-token-pattern\*)

Auth token pattern.

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-7C-4040ANTS-CI-2FJOBS-2FAUTOTAG-3FFunctions-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

#### Functions

<a id="x-2840ANTS-CI-2FJOBS-2FAUTOTAG-3AAUTOTAG-20FUNCTION-29"></a>

##### [function](a010) ‘40ants-ci/jobs/autotag:autotag‘ &key (filename \*default-filename\*) (regex \*default-regex\*) (tag-prefix \*default-tag-prefix\*) (token-pattern \*default-token-pattern\*) env

Creates a job which will run autotagger to create a new git tag for release.

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-4040ANTS-CI-2FJOBS-2FCRITIC-3FPACKAGE-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

### 40ANTS-CI/JOBS/CRITIC

<a id="x-28-23A-28-2821-29-20BASE-CHAR-20-2E-20-2240ANTS-CI-2FJOBS-2FCRITIC-22-29-20PACKAGE-29"></a>

#### [package](cd51) ‘40ants-ci/jobs/critic‘

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-7C-4040ANTS-CI-2FJOBS-2FCRITIC-3FClasses-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

#### Classes

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-4040ANTS-CI-2FJOBS-2FCRITIC-24CRITIC-3FCLASS-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

##### CRITIC

<a id="x-2840ANTS-CI-2FJOBS-2FCRITIC-3ACRITIC-20CLASS-29"></a>

###### [class](e61f) ‘40ants-ci/jobs/critic:critic‘ (lisp-job)

**Readers**

<a id="x-2840ANTS-CI-2FJOBS-2FCRITIC-3AASDF-SYSTEMS-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FCRITIC-3ACRITIC-29-29"></a>

###### [reader](b963) ‘40ants-ci/jobs/critic:asdf-systems‘ (critic) (:asdf-systems)

Critic can validate more than one system, but for the base class we need provide only one.

<a id="x-2840ANTS-CI-2FJOBS-2FCRITIC-3AIGNORE-CRITIQUES-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FCRITIC-3ACRITIC-29-29"></a>

###### [reader](e891) ‘40ants-ci/jobs/critic:ignore-critiques‘ (critic) (:ignore-critiques)

A list strigns with names of critiques to ignore.

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-7C-4040ANTS-CI-2FJOBS-2FCRITIC-3FFunctions-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

#### Functions

<a id="x-2840ANTS-CI-2FJOBS-2FCRITIC-3ACRITIC-20FUNCTION-29"></a>

##### [function](fb5e) ‘40ants-ci/jobs/critic:critic‘ &key asdf-systems asdf-version ignore-critiques env

Creates a job which will run Lisp Critic for given ‘ASDF‘ systems.

If argument ‘ASDF-SYSTEMS‘ is ‘NIL‘, it will use ‘ASDF‘ system
to which current lisp file is belong.

You may also provide ‘ASDF-VERSION‘ argument. It should be
a string. By default, the latest ‘ASDF‘ version will be used.

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-4040ANTS-CI-2FJOBS-2FDOCS-3FPACKAGE-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

### 40ANTS-CI/JOBS/DOCS

<a id="x-28-23A-28-2819-29-20BASE-CHAR-20-2E-20-2240ANTS-CI-2FJOBS-2FDOCS-22-29-20PACKAGE-29"></a>

#### [package](e165) ‘40ants-ci/jobs/docs‘

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-7C-4040ANTS-CI-2FJOBS-2FDOCS-3FClasses-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

#### Classes

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-4040ANTS-CI-2FJOBS-2FDOCS-24BUILD-DOCS-3FCLASS-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

##### BUILD-DOCS

<a id="x-2840ANTS-CI-2FJOBS-2FDOCS-3ABUILD-DOCS-20CLASS-29"></a>

###### [class](0276) ‘40ants-ci/jobs/docs:build-docs‘ (lisp-job)

Builds documentation and uploads it to GitHub using ["40ants/build-docs" github action][613f].

**Readers**

<a id="x-2840ANTS-CI-2FJOBS-2FDOCS-3AERROR-ON-WARNINGS-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FDOCS-3ABUILD-DOCS-29-29"></a>

###### [reader](4bcb) ‘40ants-ci/jobs/docs:error-on-warnings‘ (build-docs) (:error-on-warnings = t)

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-7C-4040ANTS-CI-2FJOBS-2FDOCS-3FFunctions-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

#### Functions

<a id="x-2840ANTS-CI-2FJOBS-2FDOCS-3ABUILD-DOCS-20FUNCTION-29"></a>

##### [function](0ef2) ‘40ants-ci/jobs/docs:build-docs‘ &key asdf-system asdf-version (error-on-warnings t) env

Creates a job of class [‘build-docs‘][1ddb].

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-4040ANTS-CI-2FJOBS-2FJOB-3FPACKAGE-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

### 40ANTS-CI/JOBS/JOB

<a id="x-28-23A-28-2818-29-20BASE-CHAR-20-2E-20-2240ANTS-CI-2FJOBS-2FJOB-22-29-20PACKAGE-29"></a>

#### [package](bb2c) ‘40ants-ci/jobs/job‘

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-7C-4040ANTS-CI-2FJOBS-2FJOB-3FClasses-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

#### Classes

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-4040ANTS-CI-2FJOBS-2FJOB-24JOB-3FCLASS-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

##### JOB

<a id="x-2840ANTS-CI-2FJOBS-2FJOB-3AJOB-20CLASS-29"></a>

###### [class](07ec) ‘40ants-ci/jobs/job:job‘ ()

**Readers**

<a id="x-2840ANTS-CI-2FJOBS-2FJOB-3AEXCLUDE-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FJOB-3AJOB-29-29"></a>

###### [reader](2724) ‘40ants-ci/jobs/job:exclude‘ (job) (:exclude = nil)

A list of plists denoting matrix combinations to be excluded.

<a id="x-2840ANTS-CI-2FJOBS-2FJOB-3AEXPLICIT-STEPS-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FJOB-3AJOB-29-29"></a>

###### [reader](81aa) ‘40ants-ci/jobs/job:explicit-steps‘ (job) (:steps = nil)

This slot holds steps given as a ‘STEPS‘ argument to a job constructor. Depending on a job class, it might add additional steps around these explicit steps.

<a id="x-2840ANTS-CI-2FJOBS-2FJOB-3AJOB-ENV-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FJOB-3AJOB-29-29"></a>

###### [reader](7441) ‘40ants-ci/jobs/job:job-env‘ (job) (:env = nil)

An alist of environment variables and their values to be added on job level. Values are evaluated in runtime.

<a id="x-2840ANTS-CI-2FJOBS-2FJOB-3ANAME-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FJOB-3AJOB-29-29"></a>

###### [reader](04d4) ‘40ants-ci/jobs/job:name‘ (job) (:name)

If this name was not given in constructor, then name will be lowercased name of the job class.

<a id="x-2840ANTS-CI-2FJOBS-2FJOB-3AOS-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FJOB-3AJOB-29-29"></a>

###### [reader](6148) ‘40ants-ci/jobs/job:os‘ (job) (:OS = "ubuntu-latest")

<a id="x-2840ANTS-CI-2FJOBS-2FJOB-3APERMISSIONS-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FJOB-3AJOB-29-29"></a>

###### [reader](0447) ‘40ants-ci/jobs/job:permissions‘ (job) (:permissions = nil)

A plist of permissions need for running the job.

These permissions will be bound to ‘secrets.GITHUB_TOKEN‘ variable.
Use default-initargs to override permissions in subclasses:

“‘lisp
(:default-initargs
:permissions ’(:content "write"))
“‘
<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-7C-4040ANTS-CI-2FJOBS-2FJOB-3FGenerics-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

#### Generics

<a id="x-2840ANTS-CI-2FJOBS-2FJOB-3AMAKE-ENV-20GENERIC-FUNCTION-29"></a>

##### [generic-function](8051) ‘40ants-ci/jobs/job:make-env‘ job

<a id="x-2840ANTS-CI-2FJOBS-2FJOB-3AMAKE-MATRIX-20GENERIC-FUNCTION-29"></a>

##### [generic-function](5506) ‘40ants-ci/jobs/job:make-matrix‘ job

<a id="x-2840ANTS-CI-2FJOBS-2FJOB-3AMAKE-PERMISSIONS-20GENERIC-FUNCTION-29"></a>

##### [generic-function](5309) ‘40ants-ci/jobs/job:make-permissions‘ job

Should return an alist with mapping from string to string where keys are scopes and values are permission names. Default method generates this alist from the plist of job’s "permissions" slot.

<a id="x-2840ANTS-CI-2FJOBS-2FJOB-3ASTEPS-20GENERIC-FUNCTION-29"></a>

##### [generic-function](2f36) ‘40ants-ci/jobs/job:steps‘ job

<a id="x-2840ANTS-CI-2FJOBS-2FJOB-3AUSE-MATRIX-P-20GENERIC-FUNCTION-29"></a>

##### [generic-function](4e5b) ‘40ants-ci/jobs/job:use-matrix-p‘ job

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-4040ANTS-CI-2FJOBS-2FLINTER-3FPACKAGE-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

### 40ANTS-CI/JOBS/LINTER

<a id="x-28-23A-28-2821-29-20BASE-CHAR-20-2E-20-2240ANTS-CI-2FJOBS-2FLINTER-22-29-20PACKAGE-29"></a>

#### [package](dcb3) ‘40ants-ci/jobs/linter‘

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-7C-4040ANTS-CI-2FJOBS-2FLINTER-3FClasses-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

#### Classes

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-4040ANTS-CI-2FJOBS-2FLINTER-24LINTER-3FCLASS-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

##### LINTER

<a id="x-2840ANTS-CI-2FJOBS-2FLINTER-3ALINTER-20CLASS-29"></a>

###### [class](0953) ‘40ants-ci/jobs/linter:linter‘ (lisp-job)

**Readers**

<a id="x-2840ANTS-CI-2FJOBS-2FLINTER-3AASDF-SYSTEMS-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FLINTER-3ALINTER-29-29"></a>

###### [reader](a2c7) ‘40ants-ci/jobs/linter:asdf-systems‘ (linter) (:asdf-systems = nil)

Linter can validate more than one system, but for the base class we need provide only one.

<a id="x-2840ANTS-CI-2FJOBS-2FLINTER-3ACHECK-IMPORTS-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FLINTER-3ALINTER-29-29"></a>

###### [reader](1a60) ‘40ants-ci/jobs/linter:check-imports‘ (linter) (:check-imports = nil)

Linter will check for missing or unused imports of package-inferred systems.

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-7C-4040ANTS-CI-2FJOBS-2FLINTER-3FFunctions-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

#### Functions

<a id="x-2840ANTS-CI-2FJOBS-2FLINTER-3ALINTER-20FUNCTION-29"></a>

##### [function](51d9) ‘40ants-ci/jobs/linter:linter‘ &key asdf-systems asdf-version check-imports env

Creates a job which will run ‘SBL‘int for given ‘ASDF‘ systems.

If no ‘ASD‘ files given, it will use all ‘ASD‘ files from
the current ‘ASDF‘ system.

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-4040ANTS-CI-2FJOBS-2FLISP-JOB-3FPACKAGE-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

### 40ANTS-CI/JOBS/LISP-JOB

<a id="x-28-23A-28-2823-29-20BASE-CHAR-20-2E-20-2240ANTS-CI-2FJOBS-2FLISP-JOB-22-29-20PACKAGE-29"></a>

#### [package](9e87) ‘40ants-ci/jobs/lisp-job‘

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-7C-4040ANTS-CI-2FJOBS-2FLISP-JOB-3FClasses-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

#### Classes

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-4040ANTS-CI-2FJOBS-2FLISP-JOB-24LISP-JOB-3FCLASS-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

##### LISP-JOB

<a id="x-2840ANTS-CI-2FJOBS-2FLISP-JOB-3ALISP-JOB-20CLASS-29"></a>

###### [class](b08e) ‘40ants-ci/jobs/lisp-job:lisp-job‘ (job)

This job checkouts the sources, installs Roswell and Qlot. Also, it caches results between runs.

**Readers**

<a id="x-2840ANTS-CI-2FJOBS-2FLISP-JOB-3AASDF-SYSTEM-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FLISP-JOB-3ALISP-JOB-29-29"></a>

###### [reader](e439) ‘40ants-ci/jobs/lisp-job:asdf-system‘ (lisp-job) (:asdf-system = nil)

<a id="x-2840ANTS-CI-2FJOBS-2FLISP-JOB-3AASDF-VERSION-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FLISP-JOB-3ALISP-JOB-29-29"></a>

###### [reader](a599) ‘40ants-ci/jobs/lisp-job:asdf-version‘ (lisp-job) (:asdf-version = nil)

‘ASDF‘ version to use when setting up Lisp environment. If ‘NIL‘, then the latest will be used.

<a id="x-2840ANTS-CI-2FJOBS-2FLISP-JOB-3ALISP-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FLISP-JOB-3ALISP-JOB-29-29"></a>

###### [reader](7d58) ‘40ants-ci/jobs/lisp-job:lisp‘ (lisp-job) (:LISP = "sbcl-bin")

<a id="x-2840ANTS-CI-2FJOBS-2FLISP-JOB-3AQLFILE-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FLISP-JOB-3ALISP-JOB-29-29"></a>

###### [reader](83fd) ‘40ants-ci/jobs/lisp-job:qlfile‘ (lisp-job) (:qlfile = nil)

<a id="x-2840ANTS-CI-2FJOBS-2FLISP-JOB-3AQLOT-VERSION-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FLISP-JOB-3ALISP-JOB-29-29"></a>

###### [reader](9f55) ‘40ants-ci/jobs/lisp-job:qlot-version‘ (lisp-job) (:qlot-version = nil)

Qlot version to use when setting up Lisp environment. If ‘NIL‘, then will be used version, pinned in ‘setup-lisp‘ github action.

<a id="x-2840ANTS-CI-2FJOBS-2FLISP-JOB-3AQUICKLISP-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FLISP-JOB-3ALISP-JOB-29-29"></a>

###### [reader](0516) ‘40ants-ci/jobs/lisp-job:quicklisp‘ (lisp-job) (:QUICKLISP = "quicklisp")

<a id="x-2840ANTS-CI-2FJOBS-2FLISP-JOB-3AROSWELL-VERSION-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FLISP-JOB-3ALISP-JOB-29-29"></a>

###### [reader](d638) ‘40ants-ci/jobs/lisp-job:roswell-version‘ (lisp-job) (:roswell-version = nil)

Roswell version to use when setting up Lisp environment. If ‘NIL‘, then will be used version, pinned in ‘setup-lisp‘ github action.

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-4040ANTS-CI-2FJOBS-2FRUN-TESTS-3FPACKAGE-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

### 40ANTS-CI/JOBS/RUN-TESTS

<a id="x-28-23A-28-2824-29-20BASE-CHAR-20-2E-20-2240ANTS-CI-2FJOBS-2FRUN-TESTS-22-29-20PACKAGE-29"></a>

#### [package](70f6) ‘40ants-ci/jobs/run-tests‘

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-7C-4040ANTS-CI-2FJOBS-2FRUN-TESTS-3FClasses-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

#### Classes

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-4040ANTS-CI-2FJOBS-2FRUN-TESTS-24RUN-TESTS-3FCLASS-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

##### RUN-TESTS

<a id="x-2840ANTS-CI-2FJOBS-2FRUN-TESTS-3ARUN-TESTS-20CLASS-29"></a>

###### [class](fbc6) ‘40ants-ci/jobs/run-tests:run-tests‘ (lisp-job)

This job test runs tests for a given ‘ASDF‘ system.

**Readers**

<a id="x-2840ANTS-CI-2FJOBS-2FRUN-TESTS-3ACOVERAGE-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FRUN-TESTS-3ARUN-TESTS-29-29"></a>

###### [reader](43b0) ‘40ants-ci/jobs/run-tests:coverage‘ (run-tests) (:coverage = nil)

<a id="x-2840ANTS-CI-2FJOBS-2FRUN-TESTS-3ACUSTOM-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FJOBS-2FRUN-TESTS-3ARUN-TESTS-29-29"></a>

###### [reader](522e) ‘40ants-ci/jobs/run-tests:custom‘ (run-tests) (:custom = nil)

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-7C-4040ANTS-CI-2FJOBS-2FRUN-TESTS-3FFunctions-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

#### Functions

<a id="x-2840ANTS-CI-2FJOBS-2FRUN-TESTS-3ARUN-TESTS-20FUNCTION-29"></a>

##### [function](6ab0) ‘40ants-ci/jobs/run-tests:run-tests‘ &rest rest &key coverage qlfile asdf-system asdf-version os quicklisp lisp exclude custom env

Creates a job step of class [‘run-tests‘][6cb7].

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-4040ANTS-CI-2FSTEPS-2FACTION-3FPACKAGE-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

### 40ANTS-CI/STEPS/ACTION

<a id="x-28-23A-28-2822-29-20BASE-CHAR-20-2E-20-2240ANTS-CI-2FSTEPS-2FACTION-22-29-20PACKAGE-29"></a>

#### [package](c296) ‘40ants-ci/steps/action‘

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-7C-4040ANTS-CI-2FSTEPS-2FACTION-3FClasses-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

#### Classes

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-4040ANTS-CI-2FSTEPS-2FACTION-24ACTION-3FCLASS-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

##### ACTION

<a id="x-2840ANTS-CI-2FSTEPS-2FACTION-3AACTION-20CLASS-29"></a>

###### [class](66c0) ‘40ants-ci/steps/action:action‘ (step)

**Readers**

<a id="x-2840ANTS-CI-2FSTEPS-2FACTION-3AACTION-ARGS-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FSTEPS-2FACTION-3AACTION-29-29"></a>

###### [reader](4c0c) ‘40ants-ci/steps/action:action-args‘ (action) (:args)

A plist to be passed as "with" dictionary to the action.

<a id="x-2840ANTS-CI-2FSTEPS-2FACTION-3AUSES-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FSTEPS-2FACTION-3AACTION-29-29"></a>

###### [reader](14b9) ‘40ants-ci/steps/action:uses‘ (action) (:uses)

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-7C-4040ANTS-CI-2FSTEPS-2FACTION-3FFunctions-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

#### Functions

<a id="x-2840ANTS-CI-2FSTEPS-2FACTION-3AACTION-20FUNCTION-29"></a>

##### [function](05c1) ‘40ants-ci/steps/action:action‘ name uses &rest args &key id if env &allow-other-keys

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-4040ANTS-CI-2FSTEPS-2FSH-3FPACKAGE-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

### 40ANTS-CI/STEPS/SH

<a id="x-28-23A-28-2818-29-20BASE-CHAR-20-2E-20-2240ANTS-CI-2FSTEPS-2FSH-22-29-20PACKAGE-29"></a>

#### [package](20e2) ‘40ants-ci/steps/sh‘

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-7C-4040ANTS-CI-2FSTEPS-2FSH-3FClasses-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

#### Classes

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-4040ANTS-CI-2FSTEPS-2FSH-24SH-3FCLASS-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

##### SH

<a id="x-2840ANTS-CI-2FSTEPS-2FSH-3ASH-20CLASS-29"></a>

###### [class](84ba) ‘40ants-ci/steps/sh:sh‘ (step)

**Readers**

<a id="x-2840ANTS-CI-2FSTEPS-2FSH-3ACOMMAND-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FSTEPS-2FSH-3ASH-29-29"></a>

###### [reader](4a3d) ‘40ants-ci/steps/sh:command‘ (sh) (:command)

<a id="x-2840ANTS-CI-2FSTEPS-2FSH-3ASHELL-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FSTEPS-2FSH-3ASH-29-29"></a>

###### [reader](400b) ‘40ants-ci/steps/sh:shell‘ (sh) (:shell = \*default-shell\*)

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-7C-4040ANTS-CI-2FSTEPS-2FSH-3FFunctions-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

#### Functions

<a id="x-2840ANTS-CI-2FSTEPS-2FSH-3ASH-20FUNCTION-29"></a>

##### [function](777f) ‘40ants-ci/steps/sh:sh‘ name command &key id if (shell \*default-shell\*) env

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-7C-4040ANTS-CI-2FSTEPS-2FSH-3FMacros-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

#### Macros

<a id="x-2840ANTS-CI-2FSTEPS-2FSH-3ASECTIONS-20-2840ANTS-DOC-2FLOCATIVES-3AMACRO-29-29"></a>

##### [macro](09c3) ‘40ants-ci/steps/sh:sections‘ &body body

Returns a string with a bash script where some parts are grouped.

In this example we have 3 sections:

“‘lisp
(sections
("Help Argument"
"qlot exec cl-info –help")
("Version Argument"
"qlot exec cl-info –version")
("Lisp Systems Info"
"qlot exec cl-info"
"qlot exec cl-info cl-info defmain"))
“‘
It will be compiled into:

“‘bash
echo ::group::Help Argument
qlot exec cl-info –help
echo ::endgroup::
echo ::group::Version Argument
qlot exec cl-info –version
echo ::endgroup::
echo ::group::Lisp Systems Info
qlot exec cl-info
qlot exec cl-info cl-info defmain
echo ::endgroup::
“‘
<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-4040ANTS-CI-2FSTEPS-2FSTEP-3FPACKAGE-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

### 40ANTS-CI/STEPS/STEP

<a id="x-28-23A-28-2820-29-20BASE-CHAR-20-2E-20-2240ANTS-CI-2FSTEPS-2FSTEP-22-29-20PACKAGE-29"></a>

#### [package](f455) ‘40ants-ci/steps/step‘

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-7C-4040ANTS-CI-2FSTEPS-2FSTEP-3FClasses-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

#### Classes

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-4040ANTS-CI-2FSTEPS-2FSTEP-24STEP-3FCLASS-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

##### STEP

<a id="x-2840ANTS-CI-2FSTEPS-2FSTEP-3ASTEP-20CLASS-29"></a>

###### [class](e098) ‘40ants-ci/steps/step:step‘ ()

**Readers**

<a id="x-2840ANTS-CI-2FSTEPS-2FSTEP-3AENV-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FSTEPS-2FSTEP-3ASTEP-29-29"></a>

###### [reader](ebda) ‘40ants-ci/steps/step:env‘ (step) (:env = nil)

An alist of environment variables.

<a id="x-2840ANTS-CI-2FSTEPS-2FSTEP-3ASTEP-ID-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FSTEPS-2FSTEP-3ASTEP-29-29"></a>

###### [reader](285b) ‘40ants-ci/steps/step:step-id‘ (step) (:id = nil)

<a id="x-2840ANTS-CI-2FSTEPS-2FSTEP-3ASTEP-IF-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FSTEPS-2FSTEP-3ASTEP-29-29"></a>

###### [reader](3e4f) ‘40ants-ci/steps/step:step-if‘ (step) (:if = nil)

<a id="x-2840ANTS-CI-2FSTEPS-2FSTEP-3ASTEP-NAME-20-2840ANTS-DOC-2FLOCATIVES-3AREADER-2040ANTS-CI-2FSTEPS-2FSTEP-3ASTEP-29-29"></a>

###### [reader](f189) ‘40ants-ci/steps/step:step-name‘ (step) (:name = nil)

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-4040ANTS-CI-2FUTILS-3FPACKAGE-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

### 40ANTS-CI/UTILS

<a id="x-28-23A-28-2815-29-20BASE-CHAR-20-2E-20-2240ANTS-CI-2FUTILS-22-29-20PACKAGE-29"></a>

#### [package](6536) ‘40ants-ci/utils‘

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-7C-4040ANTS-CI-2FUTILS-3FGenerics-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

#### Generics

<a id="x-2840ANTS-CI-2FUTILS-3ASYSTEM-PACKAGES-20GENERIC-FUNCTION-29"></a>

##### [generic-function](51b8) ‘40ants-ci/utils:system-packages‘ system

Returns a list of packages created by ‘ASDF‘ system.

Default implementation returns a package having the same name as a system
and all packages matched to package-inferred subsystems:

“‘
CL-USER> (docs-builder/utils:system-packages :docs-builder)
(#<PACKAGE "DOCS-BUILDER">
#<PACKAGE "DOCS-BUILDER/UTILS">
#<PACKAGE "DOCS-BUILDER/GUESSER">
#<PACKAGE "DOCS-BUILDER/BUILDERS/GENEVA/GUESSER">
#<PACKAGE "DOCS-BUILDER/BUILDER">
#<PACKAGE "DOCS-BUILDER/BUILDERS/MGL-PAX/GUESSER">
#<PACKAGE "DOCS-BUILDER/DOCS">
#<PACKAGE "DOCS-BUILDER/BUILDERS/MGL-PAX/BUILDER">)
“‘
<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-7C-4040ANTS-CI-2FUTILS-3FFunctions-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

#### Functions

<a id="x-2840ANTS-CI-2FUTILS-3AALISTP-20FUNCTION-29"></a>

##### [function](c738) ‘40ants-ci/utils:alistp‘ list

Test wheather ‘LIST‘ argument is a properly formed alist.

In this library, alist has always a string as a key.
Because we need them to have this form to serialize
to ‘JSON‘ propertly.

(alistp ’(("cron" . "0 10 * * 1"))) -> T
(alistp ’((("cron" . "0 10 * * 1")))) -> ‘NIL‘

<a id="x-2840ANTS-CI-2FUTILS-3ACURRENT-SYSTEM-NAME-20FUNCTION-29"></a>

##### [function](5250) ‘40ants-ci/utils:current-system-name‘

<a id="x-2840ANTS-CI-2FUTILS-3ADEDENT-20FUNCTION-29"></a>

##### [function](d1e1) ‘40ants-ci/utils:dedent‘ text

Removes common leading whitespace from each string.

A few examples:

“‘
(dedent "Hello
World
and all Lispers!")

"Hello
World
and all Lispers!"
“‘
“‘
(dedent "
Hello
World
and all Lispers!")

"Hello
World
and all Lispers!"
“‘
“‘
(dedent "This is a code:

(symbol-name :hello-world)

it will output HELLO-WORLD.")

"This is a code:

(symbol-name :hello-world)

it will output HELLO-WORLD."
“‘
<a id="x-2840ANTS-CI-2FUTILS-3AENSURE-LIST-OF-PLISTS-20FUNCTION-29"></a>

##### [function](43cf) ‘40ants-ci/utils:ensure-list-of-plists‘ data

<a id="x-2840ANTS-CI-2FUTILS-3AENSURE-PRIMARY-SYSTEM-20FUNCTION-29"></a>

##### [function](d238) ‘40ants-ci/utils:ensure-primary-system‘ system

<a id="x-2840ANTS-CI-2FUTILS-3AMAKE-GITHUB-WORKFLOWS-PATH-20FUNCTION-29"></a>

##### [function](bcba) ‘40ants-ci/utils:make-github-workflows-path‘ system

<a id="x-2840ANTS-CI-2FUTILS-3APLIST-TO-ALIST-20FUNCTION-29"></a>

##### [function](d7fe) ‘40ants-ci/utils:plist-to-alist‘ plist &key (string-keys t) (lowercase t)

Make an alist from a plist ‘PLIST‘.

By default, transforms keys to lowercased strings

<a id="x-2840ANTS-CI-2FUTILS-3APLISTP-20FUNCTION-29"></a>

##### [function](e99a) ‘40ants-ci/utils:plistp‘ list

Test wheather ‘LIST‘ is a properly formed plist.

<a id="x-2840ANTS-CI-2FUTILS-3ASINGLE-20FUNCTION-29"></a>

##### [function](f349) ‘40ants-ci/utils:single‘ list

Test wheather ‘LIST‘ contains exactly 1 element.

<a id="x-2840ANTS-CI-2FUTILS-3ATO-JSON-20FUNCTION-29"></a>

##### [function](150c) ‘40ants-ci/utils:to-json‘ data

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-4040ANTS-CI-2FVARS-3FPACKAGE-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

### 40ANTS-CI/VARS

<a id="x-28-23A-28-2814-29-20BASE-CHAR-20-2E-20-2240ANTS-CI-2FVARS-22-29-20PACKAGE-29"></a>

#### [package](b804) ‘40ants-ci/vars‘

<a id="x-2840ANTS-CI-DOCS-2FINDEX-3A-3A-7C-4040ANTS-CI-2FVARS-3FVariables-SECTION-7C-2040ANTS-DOC-2FLOCATIVES-3ASECTION-29"></a>

#### Variables

<a id="x-2840ANTS-CI-2FVARS-3A-2ACURRENT-SYSTEM-2A-20-28VARIABLE-29-29"></a>

##### [variable](62a7) ‘40ants-ci/vars:*current-system*‘ -unbound-

When workflow is generated for ‘ASDF‘ system, this variable will contain a primary ‘ASDF‘ system.

<a id="x-2840ANTS-CI-2FVARS-3A-2AUSE-CACHE-2A-20-28VARIABLE-29-29"></a>

##### [variable](3ce0) ‘40ants-ci/vars:*use-cache*‘ nil

Workflow will set this variable when preparing the data or ‘YAML‘ generation.

[2100]: https://40ants.com/40ants-critic
[b882]: https://40ants.com/build-doc
[613f]: https://40ants.com/build-docs/
[3f72]: https://40ants.com/ci/
[900b]: https://40ants.com/ci/#x-28-23A-28-289-29-20BASE-CHAR-20-2E-20-2240ANTS-CI-22-29-20PACKAGE-29
[b171]: https://40ants.com/ci/#x-28-23A-28-289-29-20BASE-CHAR-20-2E-20-2240ants-ci-22-29-20ASDF-2FSYSTEM-3ASYSTEM-29
[484a]: https://40ants.com/ci/#x-2840ANTS-CI-2FJOBS-2FCRITIC-3ACRITIC-20FUNCTION-29
[1ddb]: https://40ants.com/ci/#x-2840ANTS-CI-2FJOBS-2FDOCS-3ABUILD-DOCS-20CLASS-29
[13b8]: https://40ants.com/ci/#x-2840ANTS-CI-2FJOBS-2FDOCS-3ABUILD-DOCS-20FUNCTION-29
[2f4c]: https://40ants.com/ci/#x-2840ANTS-CI-2FJOBS-2FLISP-JOB-3ALISP-JOB-20CLASS-29
[6cb7]: https://40ants.com/ci/#x-2840ANTS-CI-2FJOBS-2FRUN-TESTS-3ARUN-TESTS-20CLASS-29
[e35d]: https://40ants.com/ci/#x-2840ANTS-CI-2FJOBS-2FRUN-TESTS-3ARUN-TESTS-20FUNCTION-29
[0f59]: https://40ants.com/ci/#x-2840ANTS-CI-2FSTEPS-2FSH-3ASH-20CLASS-29
[4d70]: https://40ants.com/ci/#x-2840ANTS-CI-2FSTEPS-2FSH-3ASH-20FUNCTION-29
[f2be]: https://40ants.com/docs-builder/
[8469]: https://40ants.com/run-tests
[59d7]: https://40ants.com/run-tests/
[8de1]: https://40ants.com/setup-lisp/
[b60c]: https://coveralls.io/
[e681]: https://github.com/40ants/ci
[de0b]: https://github.com/40ants/ci/actions
[12d8]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/core.lisp#L1
[1a25]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/core.lisp#L9
[52e1]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/github.lisp#L1
[c1bb]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/github.lisp#L16
[b61b]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/github.lisp#L36
[95d9]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/autotag.lisp#L1
[6edc]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/autotag.lisp#L23
[2008]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/autotag.lisp#L24
[318b]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/autotag.lisp#L29
[9330]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/autotag.lisp#L34
[b69a]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/autotag.lisp#L39
[a010]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/autotag.lisp#L49
[cd51]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/critic.lisp#L1
[e61f]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/critic.lisp#L14
[b963]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/critic.lisp#L16
[e891]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/critic.lisp#L19
[fb5e]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/critic.lisp#L24
[e165]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/docs.lisp#L1
[0276]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/docs.lisp#L15
[4bcb]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/docs.lisp#L16
[0ef2]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/docs.lisp#L22
[bb2c]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/job.lisp#L1
[4e5b]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/job.lisp#L104
[5506]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/job.lisp#L109
[8051]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/job.lisp#L120
[5309]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/job.lisp#L149
[07ec]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/job.lisp#L29
[04d4]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/job.lisp#L30
[6148]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/job.lisp#L33
[2724]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/job.lisp#L36
[7441]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/job.lisp#L40
[81aa]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/job.lisp#L45
[0447]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/job.lisp#L49
[2f36]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/job.lisp#L90
[dcb3]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/linter.lisp#L1
[0953]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/linter.lisp#L16
[a2c7]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/linter.lisp#L17
[1a60]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/linter.lisp#L22
[51d9]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/linter.lisp#L35
[9e87]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/lisp-job.lisp#L1
[b08e]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/lisp-job.lisp#L28
[0516]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/lisp-job.lisp#L29
[7d58]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/lisp-job.lisp#L32
[83fd]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/lisp-job.lisp#L35
[e439]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/lisp-job.lisp#L38
[a599]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/lisp-job.lisp#L42
[d638]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/lisp-job.lisp#L47
[9f55]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/lisp-job.lisp#L52
[70f6]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/run-tests.lisp#L1
[fbc6]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/run-tests.lisp#L19
[43b0]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/run-tests.lisp#L20
[522e]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/run-tests.lisp#L23
[6ab0]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/jobs/run-tests.lisp#L29
[c296]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/steps/action.lisp#L1
[66c0]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/steps/action.lisp#L13
[14b9]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/steps/action.lisp#L14
[4c0c]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/steps/action.lisp#L16
[05c1]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/steps/action.lisp#L22
[20e2]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/steps/sh.lisp#L1
[84ba]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/steps/sh.lisp#L17
[4a3d]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/steps/sh.lisp#L18
[400b]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/steps/sh.lisp#L20
[777f]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/steps/sh.lisp#L26
[09c3]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/steps/sh.lisp#L42
[f455]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/steps/step.lisp#L1
[e098]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/steps/step.lisp#L19
[285b]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/steps/step.lisp#L20
[f189]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/steps/step.lisp#L23
[ebda]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/steps/step.lisp#L26
[3e4f]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/steps/step.lisp#L31
[6536]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/utils.lisp#L1
[f349]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/utils.lisp#L154
[e99a]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/utils.lisp#L159
[c738]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/utils.lisp#L169
[43cf]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/utils.lisp#L185
[d7fe]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/utils.lisp#L197
[bcba]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/utils.lisp#L215
[150c]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/utils.lisp#L232
[d238]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/utils.lisp#L25
[51b8]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/utils.lisp#L31
[5250]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/utils.lisp#L70
[d1e1]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/utils.lisp#L85
[b804]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/vars.lisp#L1
[3ce0]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/vars.lisp#L14
[62a7]: https://github.com/40ants/ci/blob/d219bde605a9bdfdba8a1803d074316f81cf7a4b/src/vars.lisp#L9
[2f94]: https://github.com/cxxxr/sblint
[1cec]: https://github.com/quicklisp/quicklisp-projects/blob/ee133271c81caf5d8bbf8cef3054544ff47b64c6/projects/alexa/source.txt
[8236]: https://quickdocs.org/alexandria
[c41d]: https://quickdocs.org/serapeum
[ef7f]: https://quickdocs.org/str
[aba2]: https://quickdocs.org/yason

* * *
###### [generated by [40ANTS-DOC](https://40ants.com/doc/)]

Defsystem Dependency

40ants-asdf-system (system).

Dependencies
Source

40ants-ci.asd.


2.2 40ants-ci/core

Author

Alexander Artemenko

Home Page

https://40ants.com/ci/

Source Control

(GIT https://github.com/40ants/ci)

License

BSD

Dependency

40ants-ci/github (system).

Source

40ants-ci.asd.


2.3 40ants-ci/github

Author

Alexander Artemenko

Home Page

https://40ants.com/ci/

Source Control

(GIT https://github.com/40ants/ci)

License

BSD

Dependencies
Source

40ants-ci.asd.


2.4 40ants-ci/utils

Author

Alexander Artemenko

Home Page

https://40ants.com/ci/

Source Control

(GIT https://github.com/40ants/ci)

License

BSD

Dependencies
  • 40ants-ci/vars (system).
  • str (system).
  • yason (system).
  • serapeum (system).
Source

40ants-ci.asd.


2.5 40ants-ci/vars

Author

Alexander Artemenko

Home Page

https://40ants.com/ci/

Source Control

(GIT https://github.com/40ants/ci)

License

BSD

Source

40ants-ci.asd.


2.6 40ants-ci/jobs/job

Author

Alexander Artemenko

Home Page

https://40ants.com/ci/

Source Control

(GIT https://github.com/40ants/ci)

License

BSD

Dependencies
Source

40ants-ci.asd.


2.7 40ants-ci/steps/step

Author

Alexander Artemenko

Home Page

https://40ants.com/ci/

Source Control

(GIT https://github.com/40ants/ci)

License

BSD

Dependencies
Source

40ants-ci.asd.


2.8 40ants-ci/jobs/docs

Author

Alexander Artemenko

Home Page

https://40ants.com/ci/

Source Control

(GIT https://github.com/40ants/ci)

License

BSD

Dependencies
Source

40ants-ci.asd.


2.9 40ants-ci/jobs/lisp-job

Author

Alexander Artemenko

Home Page

https://40ants.com/ci/

Source Control

(GIT https://github.com/40ants/ci)

License

BSD

Dependencies
Source

40ants-ci.asd.


2.10 40ants-ci/steps/action

Author

Alexander Artemenko

Home Page

https://40ants.com/ci/

Source Control

(GIT https://github.com/40ants/ci)

License

BSD

Dependencies
Source

40ants-ci.asd.


2.11 40ants-ci/jobs/linter

Author

Alexander Artemenko

Home Page

https://40ants.com/ci/

Source Control

(GIT https://github.com/40ants/ci)

License

BSD

Dependencies
Source

40ants-ci.asd.


2.12 40ants-ci/steps/sh

Author

Alexander Artemenko

Home Page

https://40ants.com/ci/

Source Control

(GIT https://github.com/40ants/ci)

License

BSD

Dependencies
Source

40ants-ci.asd.


2.13 40ants-ci/jobs/critic

Author

Alexander Artemenko

Home Page

https://40ants.com/ci/

Source Control

(GIT https://github.com/40ants/ci)

License

BSD

Dependencies
Source

40ants-ci.asd.


2.14 40ants-ci/jobs/run-tests

Author

Alexander Artemenko

Home Page

https://40ants.com/ci/

Source Control

(GIT https://github.com/40ants/ci)

License

BSD

Dependencies
Source

40ants-ci.asd.


2.15 40ants-ci/jobs/autotag

Author

Alexander Artemenko

Home Page

https://40ants.com/ci/

Source Control

(GIT https://github.com/40ants/ci)

License

BSD

Dependencies
Source

40ants-ci.asd.


3 Files

Files are sorted by type and then listed depth-first from the systems components trees.


3.1 Lisp


3.1.2 40ants-ci/core/file-type.lisp

Source

40ants-ci.asd.

Parent Component

40ants-ci/core (system).

Packages

40ants-ci.

Public Interface

generate (function).


3.1.3 40ants-ci/github/file-type.lisp

Source

40ants-ci.asd.

Parent Component

40ants-ci/github (system).

Packages

40ants-ci/github.

Public Interface

3.1.4 40ants-ci/utils/file-type.lisp

Source

40ants-ci.asd.

Parent Component

40ants-ci/utils (system).

Packages

40ants-ci/utils.

Public Interface
Internals

3.1.5 40ants-ci/vars/file-type.lisp

Source

40ants-ci.asd.

Parent Component

40ants-ci/vars (system).

Packages

40ants-ci/vars.

Public Interface

3.1.6 40ants-ci/jobs/job/file-type.lisp

Source

40ants-ci.asd.

Parent Component

40ants-ci/jobs/job (system).

Packages

40ants-ci/jobs/job.

Public Interface
Internals

3.1.7 40ants-ci/steps/step/file-type.lisp

Source

40ants-ci.asd.

Parent Component

40ants-ci/steps/step (system).

Packages

40ants-ci/steps/step.

Public Interface
Internals

3.1.8 40ants-ci/jobs/docs/file-type.lisp

Source

40ants-ci.asd.

Parent Component

40ants-ci/jobs/docs (system).

Packages

40ants-ci/jobs/docs.

Public Interface

3.1.9 40ants-ci/jobs/lisp-job/file-type.lisp

Source

40ants-ci.asd.

Parent Component

40ants-ci/jobs/lisp-job (system).

Packages

40ants-ci/jobs/lisp-job.

Public Interface
Internals

make-cache-key (generic function).


3.1.10 40ants-ci/steps/action/file-type.lisp

Source

40ants-ci.asd.

Parent Component

40ants-ci/steps/action (system).

Packages

40ants-ci/steps/action.

Public Interface

3.1.11 40ants-ci/jobs/linter/file-type.lisp

Source

40ants-ci.asd.

Parent Component

40ants-ci/jobs/linter (system).

Packages

40ants-ci/jobs/linter.

Public Interface

3.1.12 40ants-ci/steps/sh/file-type.lisp

Source

40ants-ci.asd.

Parent Component

40ants-ci/steps/sh (system).

Packages

40ants-ci/steps/sh.

Public Interface
Internals

*default-shell* (special variable).


3.1.13 40ants-ci/jobs/critic/file-type.lisp

Source

40ants-ci.asd.

Parent Component

40ants-ci/jobs/critic (system).

Packages

40ants-ci/jobs/critic.

Public Interface

3.1.14 40ants-ci/jobs/run-tests/file-type.lisp

Source

40ants-ci.asd.

Parent Component

40ants-ci/jobs/run-tests (system).

Packages

40ants-ci/jobs/run-tests.

Public Interface

3.1.15 40ants-ci/jobs/autotag/file-type.lisp

Source

40ants-ci.asd.

Parent Component

40ants-ci/jobs/autotag (system).

Packages

40ants-ci/jobs/autotag.

Public Interface
Internals

4 Packages

Packages are listed by definition order.


4.1 40ants-ci/jobs/lisp-job

Source

file-type.lisp.

Use List

common-lisp.

Public Interface
Internals

make-cache-key (generic function).


4.2 40ants-ci/vars

Source

file-type.lisp.

Use List

common-lisp.

Public Interface

4.3 40ants-ci/steps/action

Source

file-type.lisp.

Use List

common-lisp.

Public Interface

4.4 40ants-ci/jobs/run-tests

Source

file-type.lisp.

Use List

common-lisp.

Public Interface

4.5 40ants-ci/jobs/job

Source

file-type.lisp.

Use List

common-lisp.

Public Interface
Internals

4.6 40ants-ci

Source

file-type.lisp.

Nickname

40ants-ci/core

Use List

common-lisp.

Public Interface

generate (function).


4.7 40ants-ci/jobs/autotag

Source

file-type.lisp.

Use List

common-lisp.

Public Interface
Internals

4.8 40ants-ci/steps/sh

Source

file-type.lisp.

Use List

common-lisp.

Public Interface
Internals

*default-shell* (special variable).


4.9 40ants-ci/github

Source

file-type.lisp.

Use List

common-lisp.

Public Interface

4.10 40ants-ci/jobs/linter

Source

file-type.lisp.

Use List

common-lisp.

Public Interface

4.11 40ants-ci/steps/step

Source

file-type.lisp.

Use List

common-lisp.

Public Interface
Internals

4.12 40ants-ci/utils

Source

file-type.lisp.

Use List

common-lisp.

Public Interface
Internals

4.13 40ants-ci/jobs/docs

Source

file-type.lisp.

Use List

common-lisp.

Public Interface

4.14 40ants-ci/jobs/critic

Source

file-type.lisp.

Use List

common-lisp.

Public Interface

5 Definitions

Definitions are sorted by export status, category, package, and then by lexicographic order.


5.1 Public Interface


5.1.1 Special variables

Special Variable: *current-system*

When workflow is generated for ASDF system, this variable will contain a primary ASDF system.

Package

40ants-ci/vars.

Source

file-type.lisp.

Special Variable: *use-cache*

Workflow will set this variable when preparing the data or YAML generation.

Package

40ants-ci/vars.

Source

file-type.lisp.


5.1.2 Macros

Macro: sections (&body body)

Returns a string with a bash script where some parts are grouped.

In this example we have 3 sections:

“‘lisp
(sections
("Help Argument"
"qlot exec cl-info –help")
("Version Argument"
"qlot exec cl-info –version")
("Lisp Systems Info"
"qlot exec cl-info"
"qlot exec cl-info cl-info defmain"))
“‘

It will be compiled into:

“‘bash
echo ::group::Help Argument
qlot exec cl-info –help
echo ::endgroup::
echo ::group::Version Argument
qlot exec cl-info –version
echo ::endgroup::
echo ::group::Lisp Systems Info
qlot exec cl-info
qlot exec cl-info cl-info defmain
echo ::endgroup::
“‘

Package

40ants-ci/steps/sh.

Source

file-type.lisp.


5.1.3 Ordinary functions

Function: action (name uses &rest args &key id if env &allow-other-keys)
Package

40ants-ci/steps/action.

Source

file-type.lisp.

Function: alistp (list)

Test wheather LIST argument is a properly formed alist.

In this library, alist has always a string as a key. Because we need them to have this form to serialize to JSON propertly.

(alistp ’(("cron" . "0 10 * * 1"))) -> T
(alistp ’((("cron" . "0 10 * * 1")))) -> NIL

Package

40ants-ci/utils.

Source

file-type.lisp.

Function: autotag (&key filename regex tag-prefix token-pattern env)

Creates a job which will run autotagger to create a new git tag for release.

Package

40ants-ci/jobs/autotag.

Source

file-type.lisp.

Function: build-docs (&key asdf-system asdf-version error-on-warnings env)

Creates a job of class BUILD-DOCS.

Package

40ants-ci/jobs/docs.

Source

file-type.lisp.

Function: critic (&key asdf-systems asdf-version ignore-critiques env)

Creates a job which will run Lisp Critic for given ASDF systems.

If argument ASDF-SYSTEMS is NIL, it will use ASDF system to which current lisp file is belong.

You may also provide ASDF-VERSION argument. It should be a string. By default, the latest ASDF version will be used.

Package

40ants-ci/jobs/critic.

Source

file-type.lisp.

Function: current-system-name ()
Package

40ants-ci/utils.

Source

file-type.lisp.

Function: dedent (text)

Removes common leading whitespace from each string.

A few examples:

“‘
(dedent "Hello
World
and all Lispers!")

"Hello
World
and all Lispers!"
“‘

“‘
(dedent "
Hello
World
and all Lispers!")

"Hello
World
and all Lispers!"
“‘

“‘
(dedent "This is a code:

(symbol-name :hello-world)

it will output HELLO-WORLD.")

"This is a code:

(symbol-name :hello-world)

it will output HELLO-WORLD."
“‘

Package

40ants-ci/utils.

Source

file-type.lisp.

Function: ensure-list-of-plists (data)
Package

40ants-ci/utils.

Source

file-type.lisp.

Function: ensure-primary-system (system)
Package

40ants-ci/utils.

Source

file-type.lisp.

Function: generate (system &key path)

Generates GitHub workflow for given ASDF system.

This function searches workflow definitions in all packages of the given ASDF system.

If PATH argument is not given, workflow files will be written to .github/workflow/ relarive to the SYSTEM.

Package

40ants-ci.

Source

file-type.lisp.

Function: linter (&key asdf-systems asdf-version check-imports env)

Creates a job which will run SBLint for given ASDF systems.

If no ASD files given, it will use all ASD files from the current ASDF system.

Package

40ants-ci/jobs/linter.

Source

file-type.lisp.

Function: make-github-workflows-path (system)
Package

40ants-ci/utils.

Source

file-type.lisp.

Function: plist-to-alist (plist &key string-keys lowercase)

Make an alist from a plist PLIST.

By default, transforms keys to lowercased strings

Package

40ants-ci/utils.

Source

file-type.lisp.

Function: plistp (list)

Test wheather LIST is a properly formed plist.

Package

40ants-ci/utils.

Source

file-type.lisp.

Function: run-tests (&rest rest &key coverage qlfile asdf-system asdf-version os quicklisp lisp exclude custom env)

Creates a job step of class RUN-TESTS.

Package

40ants-ci/jobs/run-tests.

Source

file-type.lisp.

Function: sh (name command &key id if shell env)
Package

40ants-ci/steps/sh.

Source

file-type.lisp.

Function: single (list)

Test wheather LIST contains exactly 1 element.

Package

40ants-ci/utils.

Source

file-type.lisp.

Function: to-json (data)
Package

40ants-ci/utils.

Source

file-type.lisp.


5.1.4 Generic functions

Generic Reader: action-args (object)
Package

40ants-ci/steps/action.

Methods
Reader Method: action-args ((action action))

A plist to be passed as "with" dictionary to the action.

Source

file-type.lisp.

Target Slot

action-args.

Generic Function: asdf-system (object)
Package

40ants-ci/jobs/lisp-job.

Methods
Reader Method: asdf-system :around ((job lisp-job))
Source

file-type.lisp.

Target Slot

asdf-system.

Method: asdf-system ((lisp-job lisp-job))

automatically generated reader method

Source

file-type.lisp.

Generic Function: asdf-systems (object)
Package

40ants-ci/jobs/linter.

Methods
Reader Method: asdf-systems :around ((job linter))
Source

file-type.lisp.

Target Slot

asdf-systems.

Method: asdf-systems ((linter linter))

Linter can validate more than one system, but for the base class we need provide only one.

Source

file-type.lisp.

Generic Reader: asdf-systems (object)
Package

40ants-ci/jobs/critic.

Methods
Reader Method: asdf-systems ((critic critic))

Critic can validate more than one system, but for the base class we need provide only one.

Source

file-type.lisp.

Target Slot

asdf-systems.

Generic Reader: asdf-version (object)
Package

40ants-ci/jobs/lisp-job.

Methods
Reader Method: asdf-version ((lisp-job lisp-job))

ASDF version to use when setting up Lisp environment. If NIL, then the latest will be used.

Source

file-type.lisp.

Target Slot

asdf-version.

Generic Reader: check-imports (object)
Package

40ants-ci/jobs/linter.

Methods
Reader Method: check-imports ((linter linter))

Linter will check for missing or unused imports of package-inferred systems.

Source

file-type.lisp.

Target Slot

check-imports.

Generic Reader: command (object)
Package

40ants-ci/steps/sh.

Methods
Reader Method: command ((sh sh))

automatically generated reader method

Source

file-type.lisp.

Target Slot

command.

Generic Reader: coverage (object)
Package

40ants-ci/jobs/run-tests.

Methods
Reader Method: coverage ((run-tests run-tests))

automatically generated reader method

Source

file-type.lisp.

Target Slot

coverage.

Generic Reader: custom (object)
Package

40ants-ci/jobs/run-tests.

Methods
Reader Method: custom ((run-tests run-tests))

automatically generated reader method

Source

file-type.lisp.

Target Slot

custom.

Generic Reader: env (object)
Package

40ants-ci/steps/step.

Methods
Reader Method: env ((step step))

An alist of environment variables.

Source

file-type.lisp.

Target Slot

env.

Generic Reader: error-on-warnings (object)
Package

40ants-ci/jobs/docs.

Methods
Reader Method: error-on-warnings ((build-docs build-docs))

automatically generated reader method

Source

file-type.lisp.

Target Slot

error-on-warnings.

Generic Function: exclude (object)
Package

40ants-ci/jobs/job.

Methods
Reader Method: exclude :around ((job job))
Source

file-type.lisp.

Target Slot

exclude.

Method: exclude ((job job))

A list of plists denoting matrix combinations to be excluded.

Source

file-type.lisp.

Generic Reader: explicit-steps (object)
Package

40ants-ci/jobs/job.

Methods
Reader Method: explicit-steps ((job job))

This slot holds steps given as a STEPS argument to a job constructor. Depending on a job class, it might add additional steps around these explicit steps.

Source

file-type.lisp.

Target Slot

steps.

Generic Reader: filename (object)
Package

40ants-ci/jobs/autotag.

Methods
Reader Method: filename ((autotag autotag))

File where to search for version numbers.

Source

file-type.lisp.

Target Slot

filename.

Generic Function: generate (obj path)
Package

40ants-ci/github.

Source

file-type.lisp.

Methods
Method: generate ((system system) path)
Method: generate ((symbol symbol) path)
Generic Reader: ignore-critiques (object)
Package

40ants-ci/jobs/critic.

Methods
Reader Method: ignore-critiques ((critic critic))

A list strigns with names of critiques to ignore.

Source

file-type.lisp.

Target Slot

ignore-critiques.

Generic Reader: job-env (object)
Package

40ants-ci/jobs/job.

Methods
Reader Method: job-env ((job job))

An alist of environment variables and their values to be added on job level. Values are evaluated in runtime.

Source

file-type.lisp.

Target Slot

env.

Generic Function: lisp (object)
Package

40ants-ci/jobs/lisp-job.

Methods
Reader Method: lisp :around ((job lisp-job))
Source

file-type.lisp.

Target Slot

lisp.

Method: lisp ((lisp-job lisp-job))

automatically generated reader method

Source

file-type.lisp.

Generic Function: make-env (job)
Package

40ants-ci/jobs/job.

Source

file-type.lisp.

Methods
Method: make-env ((job lisp-job))
Source

file-type.lisp.

Method: make-env ((job job))
Generic Function: make-matrix (job)
Package

40ants-ci/jobs/job.

Source

file-type.lisp.

Methods
Method: make-matrix ((job lisp-job))
Source

file-type.lisp.

Method: make-matrix ((job job))
Generic Function: make-permissions (job)

Should return an alist with mapping from string to string where keys are scopes and values are permission names. Default method generates this alist from the plist of job’s "permissions" slot.

Package

40ants-ci/jobs/job.

Source

file-type.lisp.

Methods
Method: make-permissions ((job job))
Generic Reader: name (object)
Package

40ants-ci/jobs/job.

Methods
Reader Method: name ((job job))

If this name was not given in constructor, then name will be lowercased name of the job class.

Source

file-type.lisp.

Target Slot

name.

Generic Function: os (object)
Package

40ants-ci/jobs/job.

Methods
Reader Method: os :around ((job job))
Source

file-type.lisp.

Target Slot

os.

Method: os ((job job))

automatically generated reader method

Source

file-type.lisp.

Generic Reader: permissions (object)
Package

40ants-ci/jobs/job.

Methods
Reader Method: permissions ((job job))

A plist of permissions need for running the job.

These permissions will be bound to ‘secrets.GITHUB_TOKEN‘ variable. Use default-initargs to override permissions in subclasses:

“‘lisp
(:default-initargs
:permissions ’(:content "write")) “‘

Source

file-type.lisp.

Target Slot

permissions.

Generic Function: prepare-data (obj)
Package

40ants-ci/github.

Source

file-type.lisp.

Methods
Method: prepare-data ((sh sh))
Source

file-type.lisp.

Method: prepare-data ((action action))
Source

file-type.lisp.

Method: prepare-data ((job job))
Source

file-type.lisp.

Method: prepare-data :around ((step step))
Source

file-type.lisp.

Method: prepare-data ((step step))
Source

file-type.lisp.

Generic Reader: qlfile (object)
Package

40ants-ci/jobs/lisp-job.

Methods
Reader Method: qlfile ((lisp-job lisp-job))

automatically generated reader method

Source

file-type.lisp.

Target Slot

qlfile.

Generic Reader: qlot-version (object)
Package

40ants-ci/jobs/lisp-job.

Methods
Reader Method: qlot-version ((lisp-job lisp-job))

Qlot version to use when setting up Lisp environment. If NIL, then will be used version, pinned in ‘setup-lisp‘ github action.

Source

file-type.lisp.

Target Slot

qlot-version.

Generic Function: quicklisp (object)
Package

40ants-ci/jobs/lisp-job.

Methods
Reader Method: quicklisp :around ((job lisp-job))
Source

file-type.lisp.

Target Slot

quicklisp.

Method: quicklisp ((lisp-job lisp-job))

automatically generated reader method

Source

file-type.lisp.

Generic Reader: regex (object)
Package

40ants-ci/jobs/autotag.

Methods
Reader Method: regex ((autotag autotag))

Regexp used to extract version numbers.

Source

file-type.lisp.

Target Slot

regex.

Generic Reader: roswell-version (object)
Package

40ants-ci/jobs/lisp-job.

Methods
Reader Method: roswell-version ((lisp-job lisp-job))

Roswell version to use when setting up Lisp environment. If NIL, then will be used version, pinned in ‘setup-lisp‘ github action.

Source

file-type.lisp.

Target Slot

roswell-version.

Generic Reader: shell (object)
Package

40ants-ci/steps/sh.

Methods
Reader Method: shell ((sh sh))

automatically generated reader method

Source

file-type.lisp.

Target Slot

shell.

Generic Reader: step-id (object)
Package

40ants-ci/steps/step.

Methods
Reader Method: step-id ((step step))

automatically generated reader method

Source

file-type.lisp.

Target Slot

id.

Generic Reader: step-if (object)
Package

40ants-ci/steps/step.

Methods
Reader Method: step-if ((step step))

automatically generated reader method

Source

file-type.lisp.

Target Slot

if.

Generic Reader: step-name (object)
Package

40ants-ci/steps/step.

Methods
Reader Method: step-name ((step step))

automatically generated reader method

Source

file-type.lisp.

Target Slot

name.

Generic Function: steps (job)
Package

40ants-ci/jobs/job.

Source

file-type.lisp.

Methods
Method: steps ((job autotag))
Source

file-type.lisp.

Method: steps ((job run-tests))
Source

file-type.lisp.

Method: steps ((job critic))
Source

file-type.lisp.

Method: steps ((job linter))
Source

file-type.lisp.

Method: steps ((job build-docs))
Source

file-type.lisp.

Method: steps ((job lisp-job))
Source

file-type.lisp.

Method: steps ((job job))
Method: steps :around ((job job))
Generic Function: system-packages (system)

Returns a list of packages created by ASDF system.

Default implementation returns a package having the same name as a system and all packages matched to package-inferred subsystems:

“‘
CL-USER> (docs-builder/utils:system-packages :docs-builder) (#<PACKAGE "DOCS-BUILDER">
#<PACKAGE "DOCS-BUILDER/UTILS">
#<PACKAGE "DOCS-BUILDER/GUESSER">
#<PACKAGE "DOCS-BUILDER/BUILDERS/GENEVA/GUESSER">
#<PACKAGE "DOCS-BUILDER/BUILDER">
#<PACKAGE "DOCS-BUILDER/BUILDERS/MGL-PAX/GUESSER">
#<PACKAGE "DOCS-BUILDER/DOCS">
#<PACKAGE "DOCS-BUILDER/BUILDERS/MGL-PAX/BUILDER">)
“‘

Package

40ants-ci/utils.

Source

file-type.lisp.

Methods
Method: system-packages ((system string))
Method: system-packages ((system symbol))
Method: system-packages ((system system))
Generic Reader: tag-prefix (object)
Package

40ants-ci/jobs/autotag.

Methods
Reader Method: tag-prefix ((autotag autotag))

Tag prefix.

Source

file-type.lisp.

Target Slot

tag-prefix.

Generic Reader: token-pattern (object)
Package

40ants-ci/jobs/autotag.

Methods
Reader Method: token-pattern ((autotag autotag))

Auth token pattern.

Source

file-type.lisp.

Target Slot

token-pattern.

Generic Function: use-matrix-p (job)
Package

40ants-ci/jobs/job.

Source

file-type.lisp.

Methods
Method: use-matrix-p ((job lisp-job))
Source

file-type.lisp.

Method: use-matrix-p ((job job))
Generic Reader: uses (object)
Package

40ants-ci/steps/action.

Methods
Reader Method: uses ((action action))

automatically generated reader method

Source

file-type.lisp.

Target Slot

uses.


5.1.5 Standalone methods

Method: initialize-instance :around ((job job) &rest initargs)
Source

file-type.lisp.

Method: initialize-instance :around ((step step) &rest initargs)
Source

file-type.lisp.


5.1.6 Classes

Class: action
Package

40ants-ci/steps/action.

Source

file-type.lisp.

Direct superclasses

step.

Direct methods
Direct slots
Slot: uses
Initargs

:uses

Readers

uses.

Writers

This slot is read-only.

Slot: action-args

A plist to be passed as "with" dictionary to the action.

Initargs

:args

Readers

action-args.

Writers

This slot is read-only.

Class: autotag

This type of the job created a git tag when finds a new tag in specified file.

Package

40ants-ci/jobs/autotag.

Source

file-type.lisp.

Direct superclasses

job.

Direct methods
Direct Default Initargs
InitargValue
:permissions(quote (contents write))
Direct slots
Slot: filename

File where to search for version numbers.

Type

string

Initform

40ants-ci/jobs/autotag::*default-filename*

Initargs

:filename

Readers

filename.

Writers

This slot is read-only.

Slot: regex

Regexp used to extract version numbers.

Type

string

Initform

40ants-ci/jobs/autotag::*default-regex*

Initargs

:regex

Readers

regex.

Writers

This slot is read-only.

Slot: tag-prefix

Tag prefix.

Type

string

Initform

40ants-ci/jobs/autotag::*default-tag-prefix*

Initargs

:tag-prefix

Readers

tag-prefix.

Writers

This slot is read-only.

Slot: token-pattern

Auth token pattern.

Type

string

Initform

40ants-ci/jobs/autotag::*default-token-pattern*

Initargs

:token-pattern

Readers

token-pattern.

Writers

This slot is read-only.

Class: build-docs

Builds documentation and uploads it to GitHub using ["40ants/build-docs" github action](https://40ants.com/build-docs/).

Package

40ants-ci/jobs/docs.

Source

file-type.lisp.

Direct superclasses

lisp-job.

Direct methods
Direct slots
Slot: error-on-warnings
Initform

t

Initargs

:error-on-warnings

Readers

error-on-warnings.

Writers

This slot is read-only.

Class: critic
Package

40ants-ci/jobs/critic.

Source

file-type.lisp.

Direct superclasses

lisp-job.

Direct methods
Direct slots
Slot: asdf-systems

Critic can validate more than one system, but for the base class we need provide only one.

Initargs

:asdf-systems

Readers

asdf-systems.

Writers

This slot is read-only.

Slot: ignore-critiques

A list strigns with names of critiques to ignore.

Initargs

:ignore-critiques

Readers

ignore-critiques.

Writers

This slot is read-only.

Class: job
Package

40ants-ci/jobs/job.

Source

file-type.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: name

If this name was not given in constructor, then name will be lowercased name of the job class.

Initargs

:name

Readers

name.

Writers

This slot is read-only.

Slot: os
Initform

"ubuntu-latest"

Initargs

:os

Readers

os.

Writers

This slot is read-only.

Slot: exclude

A list of plists denoting matrix combinations to be excluded.

Initargs

:exclude

Readers

exclude.

Writers

This slot is read-only.

Slot: env

An alist of environment variables and their values to be added on job level. Values are evaluated in runtime.

Type

(serapeum:soft-alist-of string string)

Initargs

:env

Readers

job-env.

Writers

This slot is read-only.

Slot: steps

This slot holds steps given as a STEPS argument to a job constructor. Depending on a job class, it might add additional steps around these explicit steps.

Initargs

:steps

Readers

explicit-steps.

Writers

This slot is read-only.

Slot: permissions

A plist of permissions need for running the job.

These permissions will be bound to ‘secrets.GITHUB_TOKEN‘ variable. Use default-initargs to override permissions in subclasses:

“‘lisp
(:default-initargs
:permissions ’(:content "write")) “‘

Initargs

:permissions

Readers

permissions.

Writers

This slot is read-only.

Class: linter
Package

40ants-ci/jobs/linter.

Source

file-type.lisp.

Direct superclasses

lisp-job.

Direct methods
Direct slots
Slot: asdf-systems

Linter can validate more than one system, but for the base class we need provide only one.

Type

(or null list)

Initargs

:asdf-systems

Readers

asdf-systems.

Writers

This slot is read-only.

Slot: check-imports

Linter will check for missing or unused imports of package-inferred systems.

Type

boolean

Initargs

:check-imports

Readers

check-imports.

Writers

This slot is read-only.

Class: lisp-job

This job checkouts the sources, installs Roswell and Qlot. Also, it caches results between runs.

Package

40ants-ci/jobs/lisp-job.

Source

file-type.lisp.

Direct superclasses

job.

Direct subclasses
Direct methods
Direct slots
Slot: quicklisp
Initform

"quicklisp"

Initargs

:quicklisp

Readers

quicklisp.

Writers

This slot is read-only.

Slot: lisp
Initform

"sbcl-bin"

Initargs

:lisp

Readers

lisp.

Writers

This slot is read-only.

Slot: qlfile
Initargs

:qlfile

Readers

qlfile.

Writers

This slot is read-only.

Slot: asdf-system
Type

(or null string)

Initargs

:asdf-system

Readers

asdf-system.

Writers

This slot is read-only.

Slot: asdf-version

ASDF version to use when setting up Lisp environment. If NIL, then the latest will be used.

Type

(or null string)

Initargs

:asdf-version

Readers

asdf-version.

Writers

This slot is read-only.

Slot: roswell-version

Roswell version to use when setting up Lisp environment. If NIL, then will be used version, pinned in ‘setup-lisp‘ github action.

Type

(or null string)

Initargs

:roswell-version

Readers

roswell-version.

Writers

This slot is read-only.

Slot: qlot-version

Qlot version to use when setting up Lisp environment. If NIL, then will be used version, pinned in ‘setup-lisp‘ github action.

Type

(or null string)

Initargs

:qlot-version

Readers

qlot-version.

Writers

This slot is read-only.

Class: run-tests

This job test runs tests for a given ASDF system.

Package

40ants-ci/jobs/run-tests.

Source

file-type.lisp.

Direct superclasses

lisp-job.

Direct methods
Direct slots
Slot: coverage
Initargs

:coverage

Readers

coverage.

Writers

This slot is read-only.

Slot: custom
Initargs

:custom

Readers

custom.

Writers

This slot is read-only.

Class: sh
Package

40ants-ci/steps/sh.

Source

file-type.lisp.

Direct superclasses

step.

Direct methods
Direct slots
Slot: command
Initargs

:command

Readers

command.

Writers

This slot is read-only.

Slot: shell
Initform

40ants-ci/steps/sh::*default-shell*

Initargs

:shell

Readers

shell.

Writers

This slot is read-only.

Class: step
Package

40ants-ci/steps/step.

Source

file-type.lisp.

Direct subclasses
Direct methods
Direct slots
Slot: id
Initargs

:id

Readers

step-id.

Writers

This slot is read-only.

Slot: name
Initargs

:name

Readers

step-name.

Writers

This slot is read-only.

Slot: env

An alist of environment variables.

Type

(serapeum:soft-alist-of string string)

Initargs

:env

Readers

env.

Writers

This slot is read-only.

Slot: if
Package

common-lisp.

Initargs

:if

Readers

step-if.

Writers

This slot is read-only.


5.2 Internals


5.2.1 Special variables

Special Variable: *default-filename*
Package

40ants-ci/jobs/autotag.

Source

file-type.lisp.

Special Variable: *default-regex*
Package

40ants-ci/jobs/autotag.

Source

file-type.lisp.

Special Variable: *default-shell*
Package

40ants-ci/steps/sh.

Source

file-type.lisp.

Special Variable: *default-tag-prefix*
Package

40ants-ci/jobs/autotag.

Source

file-type.lisp.

Special Variable: *default-token-pattern*
Package

40ants-ci/jobs/autotag.

Source

file-type.lisp.


5.2.2 Ordinary functions

Function: count-leading-spaces (line)
Package

40ants-ci/utils.

Source

file-type.lisp.

Function: empty-line (line)
Package

40ants-ci/utils.

Source

file-type.lisp.

Function: ensure-step (step-or-step-definition)
Package

40ants-ci/steps/step.

Source

file-type.lisp.

Function: list-to-json (obj stream)
Package

40ants-ci/utils.

Source

file-type.lisp.

Function: to-env-alist (env)
Package

40ants-ci/utils.

Source

file-type.lisp.


5.2.3 Generic functions

Generic Function: make-cache-key (job)
Package

40ants-ci/jobs/lisp-job.

Source

file-type.lisp.

Methods
Method: make-cache-key ((job lisp-job))
Generic Function: make-env (step)
Package

40ants-ci/steps/step.

Source

file-type.lisp.

Methods
Method: make-env ((step step))
Generic Function: make-runs-on (job)
Package

40ants-ci/jobs/job.

Source

file-type.lisp.

Methods
Method: make-runs-on ((job job))
Generic Function: make-steps (job)
Package

40ants-ci/jobs/job.

Source

file-type.lisp.

Methods
Method: make-steps ((job job))

5.2.4 Types

Type: allowed-env-name-type ()
Package

40ants-ci/utils.

Source

file-type.lisp.

Type: env-alist-type ()
Package

40ants-ci/utils.

Source

file-type.lisp.


Appendix A Indexes


A.1 Concepts


A.2 Functions

Jump to:   A   B   C   D   E   F   G   I   J   L   M   N   O   P   Q   R   S   T   U  
Index Entry  Section

A
action: Public ordinary functions
action-args: Public generic functions
action-args: Public generic functions
alistp: Public ordinary functions
asdf-system: Public generic functions
asdf-system: Public generic functions
asdf-system: Public generic functions
asdf-systems: Public generic functions
asdf-systems: Public generic functions
asdf-systems: Public generic functions
asdf-systems: Public generic functions
asdf-systems: Public generic functions
asdf-version: Public generic functions
asdf-version: Public generic functions
autotag: Public ordinary functions

B
build-docs: Public ordinary functions

C
check-imports: Public generic functions
check-imports: Public generic functions
command: Public generic functions
command: Public generic functions
count-leading-spaces: Private ordinary functions
coverage: Public generic functions
coverage: Public generic functions
critic: Public ordinary functions
current-system-name: Public ordinary functions
custom: Public generic functions
custom: Public generic functions

D
dedent: Public ordinary functions

E
empty-line: Private ordinary functions
ensure-list-of-plists: Public ordinary functions
ensure-primary-system: Public ordinary functions
ensure-step: Private ordinary functions
env: Public generic functions
env: Public generic functions
error-on-warnings: Public generic functions
error-on-warnings: Public generic functions
exclude: Public generic functions
exclude: Public generic functions
exclude: Public generic functions
explicit-steps: Public generic functions
explicit-steps: Public generic functions

F
filename: Public generic functions
filename: Public generic functions
Function, action: Public ordinary functions
Function, alistp: Public ordinary functions
Function, autotag: Public ordinary functions
Function, build-docs: Public ordinary functions
Function, count-leading-spaces: Private ordinary functions
Function, critic: Public ordinary functions
Function, current-system-name: Public ordinary functions
Function, dedent: Public ordinary functions
Function, empty-line: Private ordinary functions
Function, ensure-list-of-plists: Public ordinary functions
Function, ensure-primary-system: Public ordinary functions
Function, ensure-step: Private ordinary functions
Function, generate: Public ordinary functions
Function, linter: Public ordinary functions
Function, list-to-json: Private ordinary functions
Function, make-github-workflows-path: Public ordinary functions
Function, plist-to-alist: Public ordinary functions
Function, plistp: Public ordinary functions
Function, run-tests: Public ordinary functions
Function, sh: Public ordinary functions
Function, single: Public ordinary functions
Function, to-env-alist: Private ordinary functions
Function, to-json: Public ordinary functions

G
generate: Public ordinary functions
generate: Public generic functions
generate: Public generic functions
generate: Public generic functions
Generic Function, action-args: Public generic functions
Generic Function, asdf-system: Public generic functions
Generic Function, asdf-systems: Public generic functions
Generic Function, asdf-systems: Public generic functions
Generic Function, asdf-version: Public generic functions
Generic Function, check-imports: Public generic functions
Generic Function, command: Public generic functions
Generic Function, coverage: Public generic functions
Generic Function, custom: Public generic functions
Generic Function, env: Public generic functions
Generic Function, error-on-warnings: Public generic functions
Generic Function, exclude: Public generic functions
Generic Function, explicit-steps: Public generic functions
Generic Function, filename: Public generic functions
Generic Function, generate: Public generic functions
Generic Function, ignore-critiques: Public generic functions
Generic Function, job-env: Public generic functions
Generic Function, lisp: Public generic functions
Generic Function, make-cache-key: Private generic functions
Generic Function, make-env: Public generic functions
Generic Function, make-env: Private generic functions
Generic Function, make-matrix: Public generic functions
Generic Function, make-permissions: Public generic functions
Generic Function, make-runs-on: Private generic functions
Generic Function, make-steps: Private generic functions
Generic Function, name: Public generic functions
Generic Function, os: Public generic functions
Generic Function, permissions: Public generic functions
Generic Function, prepare-data: Public generic functions
Generic Function, qlfile: Public generic functions
Generic Function, qlot-version: Public generic functions
Generic Function, quicklisp: Public generic functions
Generic Function, regex: Public generic functions
Generic Function, roswell-version: Public generic functions
Generic Function, shell: Public generic functions
Generic Function, step-id: Public generic functions
Generic Function, step-if: Public generic functions
Generic Function, step-name: Public generic functions
Generic Function, steps: Public generic functions
Generic Function, system-packages: Public generic functions
Generic Function, tag-prefix: Public generic functions
Generic Function, token-pattern: Public generic functions
Generic Function, use-matrix-p: Public generic functions
Generic Function, uses: Public generic functions

I
ignore-critiques: Public generic functions
ignore-critiques: Public generic functions
initialize-instance: Public standalone methods
initialize-instance: Public standalone methods

J
job-env: Public generic functions
job-env: Public generic functions

L
linter: Public ordinary functions
lisp: Public generic functions
lisp: Public generic functions
lisp: Public generic functions
list-to-json: Private ordinary functions

M
Macro, sections: Public macros
make-cache-key: Private generic functions
make-cache-key: Private generic functions
make-env: Public generic functions
make-env: Public generic functions
make-env: Public generic functions
make-env: Private generic functions
make-env: Private generic functions
make-github-workflows-path: Public ordinary functions
make-matrix: Public generic functions
make-matrix: Public generic functions
make-matrix: Public generic functions
make-permissions: Public generic functions
make-permissions: Public generic functions
make-runs-on: Private generic functions
make-runs-on: Private generic functions
make-steps: Private generic functions
make-steps: Private generic functions
Method, action-args: Public generic functions
Method, asdf-system: Public generic functions
Method, asdf-system: Public generic functions
Method, asdf-systems: Public generic functions
Method, asdf-systems: Public generic functions
Method, asdf-systems: Public generic functions
Method, asdf-version: Public generic functions
Method, check-imports: Public generic functions
Method, command: Public generic functions
Method, coverage: Public generic functions
Method, custom: Public generic functions
Method, env: Public generic functions
Method, error-on-warnings: Public generic functions
Method, exclude: Public generic functions
Method, exclude: Public generic functions
Method, explicit-steps: Public generic functions
Method, filename: Public generic functions
Method, generate: Public generic functions
Method, generate: Public generic functions
Method, ignore-critiques: Public generic functions
Method, initialize-instance: Public standalone methods
Method, initialize-instance: Public standalone methods
Method, job-env: Public generic functions
Method, lisp: Public generic functions
Method, lisp: Public generic functions
Method, make-cache-key: Private generic functions
Method, make-env: Public generic functions
Method, make-env: Public generic functions
Method, make-env: Private generic functions
Method, make-matrix: Public generic functions
Method, make-matrix: Public generic functions
Method, make-permissions: Public generic functions
Method, make-runs-on: Private generic functions
Method, make-steps: Private generic functions
Method, name: Public generic functions
Method, os: Public generic functions
Method, os: Public generic functions
Method, permissions: Public generic functions
Method, prepare-data: Public generic functions
Method, prepare-data: Public generic functions
Method, prepare-data: Public generic functions
Method, prepare-data: Public generic functions
Method, prepare-data: Public generic functions
Method, qlfile: Public generic functions
Method, qlot-version: Public generic functions
Method, quicklisp: Public generic functions
Method, quicklisp: Public generic functions
Method, regex: Public generic functions
Method, roswell-version: Public generic functions
Method, shell: Public generic functions
Method, step-id: Public generic functions
Method, step-if: Public generic functions
Method, step-name: Public generic functions
Method, steps: Public generic functions
Method, steps: Public generic functions
Method, steps: Public generic functions
Method, steps: Public generic functions
Method, steps: Public generic functions
Method, steps: Public generic functions
Method, steps: Public generic functions
Method, steps: Public generic functions
Method, system-packages: Public generic functions
Method, system-packages: Public generic functions
Method, system-packages: Public generic functions
Method, tag-prefix: Public generic functions
Method, token-pattern: Public generic functions
Method, use-matrix-p: Public generic functions
Method, use-matrix-p: Public generic functions
Method, uses: Public generic functions

N
name: Public generic functions
name: Public generic functions

O
os: Public generic functions
os: Public generic functions
os: Public generic functions

P
permissions: Public generic functions
permissions: Public generic functions
plist-to-alist: Public ordinary functions
plistp: Public ordinary functions
prepare-data: Public generic functions
prepare-data: Public generic functions
prepare-data: Public generic functions
prepare-data: Public generic functions
prepare-data: Public generic functions
prepare-data: Public generic functions

Q
qlfile: Public generic functions
qlfile: Public generic functions
qlot-version: Public generic functions
qlot-version: Public generic functions
quicklisp: Public generic functions
quicklisp: Public generic functions
quicklisp: Public generic functions

R
regex: Public generic functions
regex: Public generic functions
roswell-version: Public generic functions
roswell-version: Public generic functions
run-tests: Public ordinary functions

S
sections: Public macros
sh: Public ordinary functions
shell: Public generic functions
shell: Public generic functions
single: Public ordinary functions
step-id: Public generic functions
step-id: Public generic functions
step-if: Public generic functions
step-if: Public generic functions
step-name: Public generic functions
step-name: Public generic functions
steps: Public generic functions
steps: Public generic functions
steps: Public generic functions
steps: Public generic functions
steps: Public generic functions
steps: Public generic functions
steps: Public generic functions
steps: Public generic functions
steps: Public generic functions
system-packages: Public generic functions
system-packages: Public generic functions
system-packages: Public generic functions
system-packages: Public generic functions

T
tag-prefix: Public generic functions
tag-prefix: Public generic functions
to-env-alist: Private ordinary functions
to-json: Public ordinary functions
token-pattern: Public generic functions
token-pattern: Public generic functions

U
use-matrix-p: Public generic functions
use-matrix-p: Public generic functions
use-matrix-p: Public generic functions
uses: Public generic functions
uses: Public generic functions


A.3 Variables

Jump to:   *  
A   C   E   F   I   L   N   O   P   Q   R   S   T   U  
Index Entry  Section

*
*current-system*: Public special variables
*default-filename*: Private special variables
*default-regex*: Private special variables
*default-shell*: Private special variables
*default-tag-prefix*: Private special variables
*default-token-pattern*: Private special variables
*use-cache*: Public special variables

A
action-args: Public classes
asdf-system: Public classes
asdf-systems: Public classes
asdf-systems: Public classes
asdf-version: Public classes

C
check-imports: Public classes
command: Public classes
coverage: Public classes
custom: Public classes

E
env: Public classes
env: Public classes
error-on-warnings: Public classes
exclude: Public classes

F
filename: Public classes

I
id: Public classes
if: Public classes
ignore-critiques: Public classes

L
lisp: Public classes

N
name: Public classes
name: Public classes

O
os: Public classes

P
permissions: Public classes

Q
qlfile: Public classes
qlot-version: Public classes
quicklisp: Public classes

R
regex: Public classes
roswell-version: Public classes

S
shell: Public classes
Slot, action-args: Public classes
Slot, asdf-system: Public classes
Slot, asdf-systems: Public classes
Slot, asdf-systems: Public classes
Slot, asdf-version: Public classes
Slot, check-imports: Public classes
Slot, command: Public classes
Slot, coverage: Public classes
Slot, custom: Public classes
Slot, env: Public classes
Slot, env: Public classes
Slot, error-on-warnings: Public classes
Slot, exclude: Public classes
Slot, filename: Public classes
Slot, id: Public classes
Slot, if: Public classes
Slot, ignore-critiques: Public classes
Slot, lisp: Public classes
Slot, name: Public classes
Slot, name: Public classes
Slot, os: Public classes
Slot, permissions: Public classes
Slot, qlfile: Public classes
Slot, qlot-version: Public classes
Slot, quicklisp: Public classes
Slot, regex: Public classes
Slot, roswell-version: Public classes
Slot, shell: Public classes
Slot, steps: Public classes
Slot, tag-prefix: Public classes
Slot, token-pattern: Public classes
Slot, uses: Public classes
Special Variable, *current-system*: Public special variables
Special Variable, *default-filename*: Private special variables
Special Variable, *default-regex*: Private special variables
Special Variable, *default-shell*: Private special variables
Special Variable, *default-tag-prefix*: Private special variables
Special Variable, *default-token-pattern*: Private special variables
Special Variable, *use-cache*: Public special variables
steps: Public classes

T
tag-prefix: Public classes
token-pattern: Public classes

U
uses: Public classes


A.4 Data types

Jump to:   4  
A   B   C   E   F   J   L   P   R   S   T  
Index Entry  Section

4
40ants-ci: The 40ants-ci system
40ants-ci: The 40ants-ci package
40ants-ci.asd: The 40ants-ci/40ants-ci․asd file
40ants-ci/core: The 40ants-ci/core system
40ants-ci/github: The 40ants-ci/github system
40ants-ci/github: The 40ants-ci/github package
40ants-ci/jobs/autotag: The 40ants-ci/jobs/autotag system
40ants-ci/jobs/autotag: The 40ants-ci/jobs/autotag package
40ants-ci/jobs/critic: The 40ants-ci/jobs/critic system
40ants-ci/jobs/critic: The 40ants-ci/jobs/critic package
40ants-ci/jobs/docs: The 40ants-ci/jobs/docs system
40ants-ci/jobs/docs: The 40ants-ci/jobs/docs package
40ants-ci/jobs/job: The 40ants-ci/jobs/job system
40ants-ci/jobs/job: The 40ants-ci/jobs/job package
40ants-ci/jobs/linter: The 40ants-ci/jobs/linter system
40ants-ci/jobs/linter: The 40ants-ci/jobs/linter package
40ants-ci/jobs/lisp-job: The 40ants-ci/jobs/lisp-job system
40ants-ci/jobs/lisp-job: The 40ants-ci/jobs/lisp-job package
40ants-ci/jobs/run-tests: The 40ants-ci/jobs/run-tests system
40ants-ci/jobs/run-tests: The 40ants-ci/jobs/run-tests package
40ants-ci/steps/action: The 40ants-ci/steps/action system
40ants-ci/steps/action: The 40ants-ci/steps/action package
40ants-ci/steps/sh: The 40ants-ci/steps/sh system
40ants-ci/steps/sh: The 40ants-ci/steps/sh package
40ants-ci/steps/step: The 40ants-ci/steps/step system
40ants-ci/steps/step: The 40ants-ci/steps/step package
40ants-ci/utils: The 40ants-ci/utils system
40ants-ci/utils: The 40ants-ci/utils package
40ants-ci/vars: The 40ants-ci/vars system
40ants-ci/vars: The 40ants-ci/vars package

A
action: Public classes
allowed-env-name-type: Private types
autotag: Public classes

B
build-docs: Public classes

C
Class, action: Public classes
Class, autotag: Public classes
Class, build-docs: Public classes
Class, critic: Public classes
Class, job: Public classes
Class, linter: Public classes
Class, lisp-job: Public classes
Class, run-tests: Public classes
Class, sh: Public classes
Class, step: Public classes
critic: Public classes

E
env-alist-type: Private types

F
File, 40ants-ci.asd: The 40ants-ci/40ants-ci․asd file
File, file-type.lisp: The 40ants-ci/core/file-type․lisp file
File, file-type.lisp: The 40ants-ci/github/file-type․lisp file
File, file-type.lisp: The 40ants-ci/utils/file-type․lisp file
File, file-type.lisp: The 40ants-ci/vars/file-type․lisp file
File, file-type.lisp: The 40ants-ci/jobs/job/file-type․lisp file
File, file-type.lisp: The 40ants-ci/steps/step/file-type․lisp file
File, file-type.lisp: The 40ants-ci/jobs/docs/file-type․lisp file
File, file-type.lisp: The 40ants-ci/jobs/lisp-job/file-type․lisp file
File, file-type.lisp: The 40ants-ci/steps/action/file-type․lisp file
File, file-type.lisp: The 40ants-ci/jobs/linter/file-type․lisp file
File, file-type.lisp: The 40ants-ci/steps/sh/file-type․lisp file
File, file-type.lisp: The 40ants-ci/jobs/critic/file-type․lisp file
File, file-type.lisp: The 40ants-ci/jobs/run-tests/file-type․lisp file
File, file-type.lisp: The 40ants-ci/jobs/autotag/file-type․lisp file
file-type.lisp: The 40ants-ci/core/file-type․lisp file
file-type.lisp: The 40ants-ci/github/file-type․lisp file
file-type.lisp: The 40ants-ci/utils/file-type․lisp file
file-type.lisp: The 40ants-ci/vars/file-type․lisp file
file-type.lisp: The 40ants-ci/jobs/job/file-type․lisp file
file-type.lisp: The 40ants-ci/steps/step/file-type․lisp file
file-type.lisp: The 40ants-ci/jobs/docs/file-type․lisp file
file-type.lisp: The 40ants-ci/jobs/lisp-job/file-type․lisp file
file-type.lisp: The 40ants-ci/steps/action/file-type․lisp file
file-type.lisp: The 40ants-ci/jobs/linter/file-type․lisp file
file-type.lisp: The 40ants-ci/steps/sh/file-type․lisp file
file-type.lisp: The 40ants-ci/jobs/critic/file-type․lisp file
file-type.lisp: The 40ants-ci/jobs/run-tests/file-type․lisp file
file-type.lisp: The 40ants-ci/jobs/autotag/file-type․lisp file

J
job: Public classes

L
linter: Public classes
lisp-job: Public classes

P
Package, 40ants-ci: The 40ants-ci package
Package, 40ants-ci/github: The 40ants-ci/github package
Package, 40ants-ci/jobs/autotag: The 40ants-ci/jobs/autotag package
Package, 40ants-ci/jobs/critic: The 40ants-ci/jobs/critic package
Package, 40ants-ci/jobs/docs: The 40ants-ci/jobs/docs package
Package, 40ants-ci/jobs/job: The 40ants-ci/jobs/job package
Package, 40ants-ci/jobs/linter: The 40ants-ci/jobs/linter package
Package, 40ants-ci/jobs/lisp-job: The 40ants-ci/jobs/lisp-job package
Package, 40ants-ci/jobs/run-tests: The 40ants-ci/jobs/run-tests package
Package, 40ants-ci/steps/action: The 40ants-ci/steps/action package
Package, 40ants-ci/steps/sh: The 40ants-ci/steps/sh package
Package, 40ants-ci/steps/step: The 40ants-ci/steps/step package
Package, 40ants-ci/utils: The 40ants-ci/utils package
Package, 40ants-ci/vars: The 40ants-ci/vars package

R
run-tests: Public classes

S
sh: Public classes
step: Public classes
System, 40ants-ci: The 40ants-ci system
System, 40ants-ci/core: The 40ants-ci/core system
System, 40ants-ci/github: The 40ants-ci/github system
System, 40ants-ci/jobs/autotag: The 40ants-ci/jobs/autotag system
System, 40ants-ci/jobs/critic: The 40ants-ci/jobs/critic system
System, 40ants-ci/jobs/docs: The 40ants-ci/jobs/docs system
System, 40ants-ci/jobs/job: The 40ants-ci/jobs/job system
System, 40ants-ci/jobs/linter: The 40ants-ci/jobs/linter system
System, 40ants-ci/jobs/lisp-job: The 40ants-ci/jobs/lisp-job system
System, 40ants-ci/jobs/run-tests: The 40ants-ci/jobs/run-tests system
System, 40ants-ci/steps/action: The 40ants-ci/steps/action system
System, 40ants-ci/steps/sh: The 40ants-ci/steps/sh system
System, 40ants-ci/steps/step: The 40ants-ci/steps/step system
System, 40ants-ci/utils: The 40ants-ci/utils system
System, 40ants-ci/vars: The 40ants-ci/vars system

T
Type, allowed-env-name-type: Private types
Type, env-alist-type: Private types