Created
May 8, 2020 08:06
-
-
Save srz-zumix/c858304481b850aced45867485f1fb7a to your computer and use it in GitHub Desktop.
CodeShip Pro
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
iutest: | |
build: | |
image: codeship/iutest | |
dockerfile: ./tools/docker/Dockerfile | |
volumes: | |
- ./.ssh:/root/.ssh | |
- ./:/work | |
cached: true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- type: parallel | |
exclude: gh-pages | |
steps: | |
- name: cpplint | |
service: iutest | |
command: make -C /work/test/cpplint | |
- name: check-include-guard | |
service: iutest | |
command: make -C /work/test check_incg | |
- name: check-documents | |
service: iutest | |
command: make -C /work/test/docs version-test doxygen-test | |
- name: editorconfig-self-lint | |
service: iutest | |
command: make -C /work editorconfig-self-lint | |
- name: check-fullpath | |
service: iutest | |
command: make -C /work/test/repository check-fullpath | |
- name: check-crlf | |
service: iutest | |
command: /work/.ci/check-crlf.sh | |
- type: parallel | |
exclude: gh-pages | |
steps: | |
- name: check-remote-crlf | |
service: iutest | |
command: make -C /work/test/repository check-remote-crlf | |
- type: parallel | |
tag: master | |
steps: | |
- name: sync-svn | |
service: iutest | |
command: /work/.ci/sync-svn.sh | |
- type: parallel | |
tag: v.* | |
steps: | |
- name: sync-svn | |
service: iutest | |
command: /work/.ci/sync-svn-tag.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment