diff options
| author | Emilio Jesus Gallego Arias | 2018-09-23 15:05:40 +0200 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2018-10-01 17:52:50 +0200 |
| commit | 48fd8ca4b718d4e18b6f0b45d33e4975d9dd27dd (patch) | |
| tree | 383e96262a2a86925c43a3ff101c6f417b0c0d1d | |
| parent | ea26ac474cee738d92e1b7cbb73786e1d938b102 (diff) | |
[ci] Add plugin-tutorial to CI.
This closes #7618.
| -rw-r--r-- | .gitlab-ci.yml | 3 | ||||
| -rw-r--r-- | Makefile.ci | 1 | ||||
| -rwxr-xr-x | dev/ci/ci-basic-overlay.sh | 7 | ||||
| -rwxr-xr-x | dev/ci/ci-plugin-tutorial.sh | 12 |
4 files changed, 23 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index a6b17fd148..76d967f078 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -419,6 +419,9 @@ ci-mtac2: ci-pidetop: <<: *ci-template +ci-plugin-tutorial: + <<: *ci-template + ci-quickchick: <<: *ci-template-flambda diff --git a/Makefile.ci b/Makefile.ci index e86504b76d..7fdcb35bc9 100644 --- a/Makefile.ci +++ b/Makefile.ci @@ -34,6 +34,7 @@ CI_TARGETS=ci-bedrock2 \ ci-math-comp \ ci-mtac2 \ ci-pidetop \ + ci-plugin-tutorial \ ci-quickchick \ ci-sf \ ci-simple-io \ diff --git a/dev/ci/ci-basic-overlay.sh b/dev/ci/ci-basic-overlay.sh index 63d5541f48..8620b01b26 100755 --- a/dev/ci/ci-basic-overlay.sh +++ b/dev/ci/ci-basic-overlay.sh @@ -226,3 +226,10 @@ : "${quickchick_CI_REF:=master}" : "${quickchick_CI_GITURL:=https://github.com/QuickChick/QuickChick}" : "${quickchick_CI_ARCHIVEURL:=${quickchick_CI_GITURL}/archive}" + +######################################################################## +# quickchick +######################################################################## +: "${plugin_tutorial_CI_REF:=master}" +: "${plugin_tutorial_CI_GITURL:=https://github.com/ybertot/plugin_tutorials}" +: "${plugin_tutorial_CI_ARCHIVEURL:=${plugin_tutorial_CI_GITURL}/archive}" diff --git a/dev/ci/ci-plugin-tutorial.sh b/dev/ci/ci-plugin-tutorial.sh new file mode 100755 index 0000000000..6c26a71a21 --- /dev/null +++ b/dev/ci/ci-plugin-tutorial.sh @@ -0,0 +1,12 @@ +#!/usr/bin/env bash + +ci_dir="$(dirname "$0")" +. "${ci_dir}/ci-common.sh" + +git_download plugin_tutorial + +( cd "${CI_BUILD_DIR}/plugin_tutorial" && \ + pushd tuto0 && make && popd && \ + pushd tuto1 && make && popd && \ + pushd tuto2 && make && popd && \ + pushd tuto3 && make && popd ) |
