diff options
author | Marc Hoersken <info@marc-hoersken.de> | 2021-12-14 07:53:39 +0100 |
---|---|---|
committer | Marc Hoersken <info@marc-hoersken.de> | 2021-12-14 07:53:39 +0100 |
commit | f03cc1b7a693b03eddfed2b4c7f8b5fcba9a22e5 (patch) | |
tree | a121e02e81f4dbafd8eec9a2c471db2c691dc40c /.azure-pipelines.yml | |
parent | 77311f420a541a0de5b3014e0e40ff8b4205d4af (diff) | |
download | curl-f03cc1b7a693b03eddfed2b4c7f8b5fcba9a22e5.tar.gz |
CI: build examples for additional code verification
Some CIs already build them, let's do it on more of them.
Reviewed-by: Daniel Stenberg
Follow up to #7690 and 77311f420a541a0de5b3014e0e40ff8b4205d4af
Replaces #7591
Closes #7922
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 56b9d3ff9..6f194c33f 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -83,7 +83,7 @@ stages: - script: ./buildconf && ./configure --enable-warnings --enable-werror $(configure) displayName: 'configure $(name)' - - script: make V=1 && cd tests && make V=1 + - script: make V=1 && make V=1 examples && cd tests && make V=1 displayName: 'compile' env: MAKEFLAGS: "-j 2" @@ -191,7 +191,7 @@ stages: - script: $(container_cmd) -l -c "cd $(echo '%cd%') && ./buildconf && ./configure $(configure)" displayName: 'configure $(name)' - - script: $(container_cmd) -l -c "cd $(echo '%cd%') && make V=1 && cd tests && make V=1" + - script: $(container_cmd) -l -c "cd $(echo '%cd%') && make V=1 && make V=1 examples && cd tests && make V=1" displayName: 'compile' env: MAKEFLAGS: "-j 2" |