From 25132073b262ba8318d425565533ea4c113d9b5e Mon Sep 17 00:00:00 2001 From: Ralf Jung <jung@mpi-sws.org> Date: Fri, 28 May 2021 09:55:20 +0200 Subject: [PATCH] support triggered builds against other repos --- .gitlab-ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b5f527b46..6c980e34d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -72,7 +72,8 @@ build-coq.8.12.2: build-stdpp.dev-coq.8.13.1: <<: *template variables: - OPAM_PINS: "coq version 8.13.1 coq-stdpp.dev git git+https://gitlab.mpi-sws.org/iris/stdpp.git#$STDPP_REV" + STDPP_REPO: "iris/stdpp" + OPAM_PINS: "coq version 8.13.1 git+https://gitlab.mpi-sws.org/$STDPP_REPO#$STDPP_REV" except: only: - triggers @@ -83,7 +84,8 @@ build-stdpp.dev-coq.8.13.1: build-stdpp.dev-coq.8.13.dev: <<: *template variables: - OPAM_PINS: "coq version 8.13.dev coq-stdpp.dev git git+https://gitlab.mpi-sws.org/iris/stdpp.git#$STDPP_REV" + STDPP_REPO: "iris/stdpp" + OPAM_PINS: "coq version 8.13.dev git+https://gitlab.mpi-sws.org/$STDPP_REPO#$STDPP_REV" CI_COQCHK: "1" except: only: -- GitLab