diff options
author | Alp Mestanogullari <alpmestan@gmail.com> | 2019-11-01 12:06:05 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2019-11-07 21:24:59 -0500 |
commit | d0ef83123e466365f5362b76d691bec489ffe94c (patch) | |
tree | ed98f62033f33bf144e49081893f7d4a94cfc711 /.gitlab-ci.yml | |
parent | a956663291435cbcb3ad7bc5db01597e8604063a (diff) | |
download | haskell-d0ef83123e466365f5362b76d691bec489ffe94c.tar.gz |
hadrian: fix support for the recording of perf test results
Before this patch, Hadrian didn't care about the TEST_ENV and
METRICS_FILE environment variables, that the performance testing
infrastructure uses to record perf tests results from CI jobs.
It now looks them up right before running the testsuite driver,
and passes suitable --test-env/--metrics-file arguments when
these environment variables are set.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5b0d9b4e9d..a328d5d1de 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -202,7 +202,15 @@ lint-release-changelogs: - mv _build/bindist/ghc*.tar.xz ghc.tar.xz - export TOP=$(pwd) - cd _build/bindist/ghc-*/ && ./configure --prefix=$TOP/_build/install && make install && cd ../../../ - - hadrian/build.cabal.sh --flavour=$FLAVOUR -j`mk/detect-cpu-count.sh` --docs=no-sphinx test --summary-junit=./junit.xml --test-compiler=$TOP/_build/install/bin/ghc + - | + # Prepare to push git notes. + METRICS_FILE=$CI_PROJECT_DIR/performance-metrics.tsv + git config user.email "ben+ghc-ci@smart-cactus.org" + git config user.name "GHC GitLab CI" + - hadrian/build.cabal.sh --flavour=$FLAVOUR -j`mk/detect-cpu-count.sh` --docs=no-sphinx test --summary-junit=./junit.xml --test-compiler=$TOP/_build/install/bin/ghc || (METRICS_FILE=$METRICS_FILE .gitlab/push-test-metrics.sh && false) + - | + # Push git notes. + METRICS_FILE=$METRICS_FILE .gitlab/push-test-metrics.sh cache: key: hadrian paths: @@ -239,7 +247,7 @@ validate-x86_64-linux-deb9-unreg-hadrian: stage: full-build variables: CONFIGURE_ARGS: --enable-unregisterised - TEST_ENV: "x86_64-linux-deb9-unreg" + TEST_ENV: "x86_64-linux-deb9-unreg-hadrian" hadrian-ghc-in-ghci: <<: *only-default @@ -790,7 +798,7 @@ nightly-i386-windows-hadrian: extends: .build-windows-hadrian variables: MSYSTEM: MINGW32 - TEST_ENV: "x86_64-windows-hadrian" + TEST_ENV: "i386-windows-hadrian" only: variables: - $NIGHTLY |