CLOVIS
gitlabCi { val helloWorld by job { script { shell("echo Hello world!") } } }.println()
helloWorld: script: - echo Hello world!
gitlabCi { val build by job { useGradle() script { gradlew.task("build") } } }.println()
build: variables: GRADLE_USER_HOME: $CI_BUILDS_DIR/.gradle cache: paths: - .gradle/wrapper key: files: - gradle/wrapper/gradle-wrapper.properties script: - ./gradlew build
curioustechizen
A modern programming language that makes developers happier.