Skip to content

Commit

Permalink
skip condition (#401)
Browse files Browse the repository at this point in the history
  • Loading branch information
srz-zumix authored Apr 4, 2020
1 parent 8a6b719 commit c42ccce
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Platforms

* Windows
* Linux
* Mac OS
* MacOS
* FreeBSD
* Cygwin
* MinGW
Expand Down
5 changes: 4 additions & 1 deletion codefresh.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ steps:
stage: checkout
repo: '${{CF_REPO_OWNER}}/${{CF_REPO_NAME}}'
revision: '${{CF_REVISION}}'
when:
when: &skip_condition
condition:
all:
noSkipCiInCommitMessage1: 'includes(lower("${{CF_COMMIT_MESSAGE}}"), "skip ci") == false'
Expand All @@ -28,6 +28,7 @@ steps:
working_directory: ./
tag: '${{CF_BRANCH_TAG_NORMALIZED}}'
dockerfile: ./tools/docker/Dockerfile
when: *skip_condition
PrepareUnitTests:
title: Prepare
stage: prepare
Expand All @@ -38,9 +39,11 @@ steps:
- cf_export CI_NODEBUG=1
- make -C test clean
- make -C test prepare
when: *skip_condition
BuildUnitTests:
type: parallel
stage: build_all_tests
when: *skip_condition
steps:
BuildBasicTest_gcc9: &build_all_test
title: Build Basic all_tests - gcc9
Expand Down

0 comments on commit c42ccce

Please sign in to comment.