├── .github └── workflows │ └── main.yml ├── GitLab ├── ArtifactsSpec │ ├── Type.dhall │ ├── append.dhall │ ├── default.dhall │ ├── package.dhall │ └── toJSON.dhall ├── CachePolicy │ ├── Type.dhall │ ├── package.dhall │ └── toJSON.dhall ├── CacheSpec │ ├── Type.dhall │ ├── append.dhall │ ├── package.dhall │ └── toJSON.dhall ├── Defaults │ ├── Type.dhall │ ├── default.dhall │ ├── package.dhall │ └── toJSON.dhall ├── Duration │ ├── Type.dhall │ ├── fromDays.dhall │ ├── fromHours.dhall │ ├── fromMinutes.dhall │ ├── fromSeconds.dhall │ ├── fromWeeks.dhall │ ├── fromYears.dhall │ ├── greaterThan.dhall │ ├── package.dhall │ ├── scale.dhall │ └── toJSON.dhall ├── Environment │ ├── Type.dhall │ ├── append.dhall │ ├── default.dhall │ ├── package.dhall │ └── toJSON.dhall ├── EnvironmentAction │ ├── Type.dhall │ ├── package.dhall │ └── toJSON.dhall ├── GitSubmoduleStrategy │ ├── Type.dhall │ ├── package.dhall │ └── toJSON.dhall ├── Image │ ├── Type.dhall │ ├── append.dhall │ ├── default.dhall │ ├── package.dhall │ └── toJSON.dhall ├── Include │ ├── Type.dhall │ ├── default.dhall │ ├── package.dhall │ └── toJSON.dhall ├── Job │ ├── Type.dhall │ ├── append.dhall │ ├── default.dhall │ ├── package.dhall │ └── toJSON.dhall ├── Kubernetes │ ├── Type.dhall │ ├── append.dhall │ ├── default.dhall │ ├── package.dhall │ └── toJSON.dhall ├── Prelude.dhall ├── Rule │ ├── Type.dhall │ ├── default.dhall │ ├── package.dhall │ └── toJSON.dhall ├── Script │ ├── Type.dhall │ └── package.dhall ├── Service │ ├── Type.dhall │ ├── mkService.dhall │ ├── package.dhall │ └── toJSON.dhall ├── Top │ ├── Type.dhall │ ├── default.dhall │ ├── package.dhall │ └── toJSON.dhall ├── Trigger │ ├── Type.dhall │ ├── append.dhall │ ├── default.dhall │ ├── package.dhall │ └── toJSON.dhall ├── TriggerStrategy │ ├── Type.dhall │ ├── package.dhall │ └── toJSON.dhall ├── When │ ├── Type.dhall │ ├── package.dhall │ └── toJSON.dhall ├── package.dhall └── utils │ ├── dropNones.dhall │ ├── mergeOptional.dhall │ ├── mergeOptionalList.dhall │ ├── mergeOptionalRight.dhall │ ├── optionalList.dhall │ └── stringsArrayJSON.dhall ├── LICENSE ├── Prelude.dhall ├── README.mkd ├── examples ├── multiple-jobs.dhall └── single-job.dhall └── package.dhall /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /GitLab/ArtifactsSpec/Type.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/ArtifactsSpec/Type.dhall -------------------------------------------------------------------------------- /GitLab/ArtifactsSpec/append.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/ArtifactsSpec/append.dhall -------------------------------------------------------------------------------- /GitLab/ArtifactsSpec/default.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/ArtifactsSpec/default.dhall -------------------------------------------------------------------------------- /GitLab/ArtifactsSpec/package.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/ArtifactsSpec/package.dhall -------------------------------------------------------------------------------- /GitLab/ArtifactsSpec/toJSON.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/ArtifactsSpec/toJSON.dhall -------------------------------------------------------------------------------- /GitLab/CachePolicy/Type.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/CachePolicy/Type.dhall -------------------------------------------------------------------------------- /GitLab/CachePolicy/package.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/CachePolicy/package.dhall -------------------------------------------------------------------------------- /GitLab/CachePolicy/toJSON.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/CachePolicy/toJSON.dhall -------------------------------------------------------------------------------- /GitLab/CacheSpec/Type.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/CacheSpec/Type.dhall -------------------------------------------------------------------------------- /GitLab/CacheSpec/append.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/CacheSpec/append.dhall -------------------------------------------------------------------------------- /GitLab/CacheSpec/package.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/CacheSpec/package.dhall -------------------------------------------------------------------------------- /GitLab/CacheSpec/toJSON.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/CacheSpec/toJSON.dhall -------------------------------------------------------------------------------- /GitLab/Defaults/Type.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Defaults/Type.dhall -------------------------------------------------------------------------------- /GitLab/Defaults/default.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Defaults/default.dhall -------------------------------------------------------------------------------- /GitLab/Defaults/package.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Defaults/package.dhall -------------------------------------------------------------------------------- /GitLab/Defaults/toJSON.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Defaults/toJSON.dhall -------------------------------------------------------------------------------- /GitLab/Duration/Type.dhall: -------------------------------------------------------------------------------- 1 | { seconds : Natural } 2 | -------------------------------------------------------------------------------- /GitLab/Duration/fromDays.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Duration/fromDays.dhall -------------------------------------------------------------------------------- /GitLab/Duration/fromHours.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Duration/fromHours.dhall -------------------------------------------------------------------------------- /GitLab/Duration/fromMinutes.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Duration/fromMinutes.dhall -------------------------------------------------------------------------------- /GitLab/Duration/fromSeconds.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Duration/fromSeconds.dhall -------------------------------------------------------------------------------- /GitLab/Duration/fromWeeks.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Duration/fromWeeks.dhall -------------------------------------------------------------------------------- /GitLab/Duration/fromYears.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Duration/fromYears.dhall -------------------------------------------------------------------------------- /GitLab/Duration/greaterThan.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Duration/greaterThan.dhall -------------------------------------------------------------------------------- /GitLab/Duration/package.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Duration/package.dhall -------------------------------------------------------------------------------- /GitLab/Duration/scale.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Duration/scale.dhall -------------------------------------------------------------------------------- /GitLab/Duration/toJSON.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Duration/toJSON.dhall -------------------------------------------------------------------------------- /GitLab/Environment/Type.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Environment/Type.dhall -------------------------------------------------------------------------------- /GitLab/Environment/append.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Environment/append.dhall -------------------------------------------------------------------------------- /GitLab/Environment/default.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Environment/default.dhall -------------------------------------------------------------------------------- /GitLab/Environment/package.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Environment/package.dhall -------------------------------------------------------------------------------- /GitLab/Environment/toJSON.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Environment/toJSON.dhall -------------------------------------------------------------------------------- /GitLab/EnvironmentAction/Type.dhall: -------------------------------------------------------------------------------- 1 | < Start | Prepare | Stop > 2 | -------------------------------------------------------------------------------- /GitLab/EnvironmentAction/package.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/EnvironmentAction/package.dhall -------------------------------------------------------------------------------- /GitLab/EnvironmentAction/toJSON.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/EnvironmentAction/toJSON.dhall -------------------------------------------------------------------------------- /GitLab/GitSubmoduleStrategy/Type.dhall: -------------------------------------------------------------------------------- 1 | < Recursive | Normal > 2 | -------------------------------------------------------------------------------- /GitLab/GitSubmoduleStrategy/package.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/GitSubmoduleStrategy/package.dhall -------------------------------------------------------------------------------- /GitLab/GitSubmoduleStrategy/toJSON.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/GitSubmoduleStrategy/toJSON.dhall -------------------------------------------------------------------------------- /GitLab/Image/Type.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Image/Type.dhall -------------------------------------------------------------------------------- /GitLab/Image/append.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Image/append.dhall -------------------------------------------------------------------------------- /GitLab/Image/default.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Image/default.dhall -------------------------------------------------------------------------------- /GitLab/Image/package.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Image/package.dhall -------------------------------------------------------------------------------- /GitLab/Image/toJSON.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Image/toJSON.dhall -------------------------------------------------------------------------------- /GitLab/Include/Type.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Include/Type.dhall -------------------------------------------------------------------------------- /GitLab/Include/default.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Include/default.dhall -------------------------------------------------------------------------------- /GitLab/Include/package.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Include/package.dhall -------------------------------------------------------------------------------- /GitLab/Include/toJSON.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Include/toJSON.dhall -------------------------------------------------------------------------------- /GitLab/Job/Type.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Job/Type.dhall -------------------------------------------------------------------------------- /GitLab/Job/append.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Job/append.dhall -------------------------------------------------------------------------------- /GitLab/Job/default.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Job/default.dhall -------------------------------------------------------------------------------- /GitLab/Job/package.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Job/package.dhall -------------------------------------------------------------------------------- /GitLab/Job/toJSON.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Job/toJSON.dhall -------------------------------------------------------------------------------- /GitLab/Kubernetes/Type.dhall: -------------------------------------------------------------------------------- 1 | { namespace : Optional Text } 2 | -------------------------------------------------------------------------------- /GitLab/Kubernetes/append.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Kubernetes/append.dhall -------------------------------------------------------------------------------- /GitLab/Kubernetes/default.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Kubernetes/default.dhall -------------------------------------------------------------------------------- /GitLab/Kubernetes/package.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Kubernetes/package.dhall -------------------------------------------------------------------------------- /GitLab/Kubernetes/toJSON.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Kubernetes/toJSON.dhall -------------------------------------------------------------------------------- /GitLab/Prelude.dhall: -------------------------------------------------------------------------------- 1 | ./../Prelude.dhall -------------------------------------------------------------------------------- /GitLab/Rule/Type.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Rule/Type.dhall -------------------------------------------------------------------------------- /GitLab/Rule/default.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Rule/default.dhall -------------------------------------------------------------------------------- /GitLab/Rule/package.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Rule/package.dhall -------------------------------------------------------------------------------- /GitLab/Rule/toJSON.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Rule/toJSON.dhall -------------------------------------------------------------------------------- /GitLab/Script/Type.dhall: -------------------------------------------------------------------------------- 1 | List Text 2 | -------------------------------------------------------------------------------- /GitLab/Script/package.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Script/package.dhall -------------------------------------------------------------------------------- /GitLab/Service/Type.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Service/Type.dhall -------------------------------------------------------------------------------- /GitLab/Service/mkService.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Service/mkService.dhall -------------------------------------------------------------------------------- /GitLab/Service/package.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Service/package.dhall -------------------------------------------------------------------------------- /GitLab/Service/toJSON.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Service/toJSON.dhall -------------------------------------------------------------------------------- /GitLab/Top/Type.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Top/Type.dhall -------------------------------------------------------------------------------- /GitLab/Top/default.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Top/default.dhall -------------------------------------------------------------------------------- /GitLab/Top/package.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Top/package.dhall -------------------------------------------------------------------------------- /GitLab/Top/toJSON.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Top/toJSON.dhall -------------------------------------------------------------------------------- /GitLab/Trigger/Type.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Trigger/Type.dhall -------------------------------------------------------------------------------- /GitLab/Trigger/append.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Trigger/append.dhall -------------------------------------------------------------------------------- /GitLab/Trigger/default.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Trigger/default.dhall -------------------------------------------------------------------------------- /GitLab/Trigger/package.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Trigger/package.dhall -------------------------------------------------------------------------------- /GitLab/Trigger/toJSON.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/Trigger/toJSON.dhall -------------------------------------------------------------------------------- /GitLab/TriggerStrategy/Type.dhall: -------------------------------------------------------------------------------- 1 | < Depend > 2 | -------------------------------------------------------------------------------- /GitLab/TriggerStrategy/package.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/TriggerStrategy/package.dhall -------------------------------------------------------------------------------- /GitLab/TriggerStrategy/toJSON.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/TriggerStrategy/toJSON.dhall -------------------------------------------------------------------------------- /GitLab/When/Type.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/When/Type.dhall -------------------------------------------------------------------------------- /GitLab/When/package.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/When/package.dhall -------------------------------------------------------------------------------- /GitLab/When/toJSON.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/When/toJSON.dhall -------------------------------------------------------------------------------- /GitLab/package.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/package.dhall -------------------------------------------------------------------------------- /GitLab/utils/dropNones.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/utils/dropNones.dhall -------------------------------------------------------------------------------- /GitLab/utils/mergeOptional.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/utils/mergeOptional.dhall -------------------------------------------------------------------------------- /GitLab/utils/mergeOptionalList.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/utils/mergeOptionalList.dhall -------------------------------------------------------------------------------- /GitLab/utils/mergeOptionalRight.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/utils/mergeOptionalRight.dhall -------------------------------------------------------------------------------- /GitLab/utils/optionalList.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/utils/optionalList.dhall -------------------------------------------------------------------------------- /GitLab/utils/stringsArrayJSON.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/GitLab/utils/stringsArrayJSON.dhall -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/LICENSE -------------------------------------------------------------------------------- /Prelude.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/Prelude.dhall -------------------------------------------------------------------------------- /README.mkd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/README.mkd -------------------------------------------------------------------------------- /examples/multiple-jobs.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/examples/multiple-jobs.dhall -------------------------------------------------------------------------------- /examples/single-job.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/examples/single-job.dhall -------------------------------------------------------------------------------- /package.dhall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bgamari/dhall-gitlab-ci/HEAD/package.dhall --------------------------------------------------------------------------------