Dagger
Search

plugin-ci

No long description provided.

Installation

dagger install github.com/ginjiruu/moodle_plugin_ci/pluginci@40908068011f4a20f4dcc719dbf52495483e68bf

Entrypoint

Return Type
PluginCi !
Arguments
NameTypeDefault ValueDescription
pluginDirectory !-Plugin to run CI on
dependencyFileString "plugin_requirements.txt"Path to dependency file required for the plugin If not provided defaults to plugin_requirements.txt
phpVersionString "8.1"No description provided
moodleVersionString "MOODLE_401_STABLE"Branch of moodle to run against
moodleRepoString "git@github.com:moodle/moodle.git"Moodle repository to pull from
databaseString "mariadb"No description provided
Example
func (m *myModule) example(plugin *Directory) *PluginCi  {
	return dag.
			PluginCi(plugin)
}

Types

PluginCi 🔗

plugin() 🔗

Return Type
Directory !
Example
func (m *myModule) example(plugin *Directory) *Directory  {
	return dag.
			PluginCi(plugin).
			Plugin()
}

dependencies() 🔗

Return Type
String !
Example
func (m *myModule) example(ctx context.Context, plugin *Directory) string  {
	return dag.
			PluginCi(plugin).
			Dependencies(ctx)
}

phpVersion() 🔗

Return Type
String !
Example
func (m *myModule) example(ctx context.Context, plugin *Directory) string  {
	return dag.
			PluginCi(plugin).
			PhpVersion(ctx)
}

moodleVersion() 🔗

Return Type
String !
Example
func (m *myModule) example(ctx context.Context, plugin *Directory) string  {
	return dag.
			PluginCi(plugin).
			MoodleVersion(ctx)
}

database() 🔗

Return Type
String !
Example
func (m *myModule) example(ctx context.Context, plugin *Directory) string  {
	return dag.
			PluginCi(plugin).
			Database(ctx)
}

message() 🔗

Return Type
String !
Example
func (m *myModule) example(ctx context.Context, plugin *Directory) string  {
	return dag.
			PluginCi(plugin).
			Message(ctx)
}

mariadbService() 🔗

Return Type
Service !
Example
func (m *myModule) example(plugin *Directory) *Service  {
	return dag.
			PluginCi(plugin).
			MariadbService()
}

postgresService() 🔗

Return Type
Service !
Example
func (m *myModule) example(plugin *Directory) *Service  {
	return dag.
			PluginCi(plugin).
			PostgresService()
}

getDependencies() 🔗

Downloads and provides all dependencies needed to install the plugin

Return Type
Directory !
Example
func (m *myModule) example(plugin *Directory) *Directory  {
	return dag.
			PluginCi(plugin).
			GetDependencies()
}

moodle() 🔗

Init function for setting up template that other jobs draw from

Return Type
Container !
Example
func (m *myModule) example(plugin *Directory) *Container  {
	return dag.
			PluginCi(plugin).
			Moodle()
}

test() 🔗

Run specified test(s)

Return Type
String !
Arguments
NameTypeDefault ValueDescription
operations[String ! ] ["phplint"]Array of testing operation to perform Example: dagger call --plugin=./plugin/ --dependencies=./dependencies/ test --operations="phplint,phpmd" Defaults to lint Options: phplint, phpmd, phpcs, phpdoc, validate, savepoints, mustache, grunt, phpunit, all,
Example
func (m *myModule) example(ctx context.Context, plugin *Directory) string  {
	return dag.
			PluginCi(plugin).
			Test(ctx)
}