diff options
author | Timothee Cour <timothee.cour2@gmail.com> | 2021-05-26 00:43:30 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-26 09:43:30 +0200 |
commit | c495628255330a559e3398663cc8872cca18b04d (patch) | |
tree | cf85c44fe30068263515dbfe53709ebc508c56de /tools | |
parent | b59dc3b255d778cefdbef2c0c3ff55d43892c11c (diff) | |
download | Nim-c495628255330a559e3398663cc8872cca18b04d.tar.gz |
refactor common code in CI pipelines (#18035)
* refactor CI with nimInternalInstallDepsWindows * refactor CI with nimInternalBuildKochAndRunCI * fixup
Diffstat (limited to 'tools')
-rw-r--r-- | tools/ci_generate.nim | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tools/ci_generate.nim b/tools/ci_generate.nim index f08cd5409..52b84f0d8 100644 --- a/tools/ci_generate.nim +++ b/tools/ci_generate.nim @@ -29,15 +29,11 @@ tasks: set -e cd Nim . ci/funs.sh && nimBuildCsourcesIfNeeded - $nim_csources c --skipUserCfg --skipParentCfg koch echo 'export PATH=$HOME/Nim/bin:$PATH' >> $HOME/.buildenv - test: | set -e cd Nim - if ! ./koch runCI; then - nim r tools/ci_testresults.nim - exit 1 - fi + . ci/funs.sh && nimInternalBuildKochAndRunCI triggers: - action: email condition: failure |