diff --git a/Makefile b/Makefile index 5156e34c461acbe0bdb36152c0877dd3d4847690..741a17b47bf9233f21ef7f9af4afe1936c40af41 100644 --- a/Makefile +++ b/Makefile @@ -19,6 +19,9 @@ BACKPORTS_BASE_FILE := $(BACKPORTS_BASE_DIR)/Base.gitlab-ci.yml .PHONY: backports +# NOTE: this make target requires GNU sed and not the mac OS sed. +# Install it with `brew install gnu-sed` and follow the instructions in `brew info gnu-sed` to +# make it the standard `sed` binary (if you wish) or temporarily alias sed=gsed backports: @mkdir -p $(BACKPORTS_BASE_DIR) @echo 'variables:' > $(BACKPORTS_BASE_FILE) diff --git a/backports/OpenTofu.gitlab-ci.yml b/backports/OpenTofu.gitlab-ci.yml index f1334ae996a7234c990edb9bdea86deb76c03622..e7c5c0efda8421787a5852f00d34b65f12db171a 100644 --- a/backports/OpenTofu.gitlab-ci.yml +++ b/backports/OpenTofu.gitlab-ci.yml @@ -13,7 +13,7 @@ # https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/OpenTofu.gitlab-ci.yml include: - - local: OpenTofu/Base.latest.gitlab-ci.yml # https://gitlab.com/gitlab-org/gitlab/blob/master/lib/gitlab/ci/templates/OpenTofu/Base.latest.gitlab-ci.yml + - local: /backports/OpenTofu/Base.latest.gitlab-ci.yml # https://gitlab.com/gitlab-org/gitlab/blob/master/lib/gitlab/ci/templates/OpenTofu/Base.latest.gitlab-ci.yml stages: [validate, test, build, deploy]