diff options
author | Marc Hoersken <info@marc-hoersken.de> | 2021-09-27 21:17:29 +0200 |
---|---|---|
committer | Marc Hoersken <info@marc-hoersken.de> | 2021-10-08 20:16:15 +0200 |
commit | ab1671cafefcaf19ff6ac00a6cc7b36dfe16adcd (patch) | |
tree | e7b57626ec198036af2f0f562e994182c1df2909 /.azure-pipelines.yml | |
parent | aceff6088cef70843de1da1dd7cc03c37c094d99 (diff) | |
download | curl-ab1671cafefcaf19ff6ac00a6cc7b36dfe16adcd.tar.gz |
CI/makefiles: introduce dedicated test target
Make it easy to use the same set of test flags
throughout all current and future CI builds.
Reviewed-by: Jay Satiro
Follow up to #7690
Closes #7785
Diffstat (limited to '.azure-pipelines.yml')
-rw-r--r-- | .azure-pipelines.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 0c724f569..2070b407f 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -199,8 +199,8 @@ stages: - script: $(container_cmd) -l -c "cd $(echo '%cd%') && make V=1 install && PATH=/usr/bin:/bin find . -type f -path '*/.libs/*.exe' -print -execdir mv -t .. {} \;" displayName: 'install' - - script: $(container_cmd) -l -c "cd $(echo '%cd%') && make V=1 test-nonflaky" + - script: $(container_cmd) -l -c "cd $(echo '%cd%') && make V=1 test-ci" displayName: 'test' env: AZURE_ACCESS_TOKEN: "$(System.AccessToken)" - TFLAGS: "-r -rm -u !SCP $(tests)" + TFLAGS: "!SCP $(tests)" |