Skip to content

Commit 3dd6cf9

Browse files
authored
Merge pull request #3 from riptano/fix_ci_builds
ci: Fixing integration test builds and runs
2 parents d146f00 + b892963 commit 3dd6cf9

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.build.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ build_driver() {
7474
(
7575
cd build
7676
BUILD_INTEGRATION_TESTS=Off
77-
if [ "${CI_SCHEDULE}" != "commit" ]; then
77+
if [ "${CI_INTEGRATION_ENABLED}" == "true" ]; then
7878
BUILD_INTEGRATION_TESTS=On
7979
fi
8080
cmake -DCMAKE_BUILD_TYPE=Release \

build.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ schedules:
2222
- os: ['ubuntu/trusty64/cpp', 'ubuntu/xenial64/cpp', 'centos/6-64/cpp', 'centos/7-64/cpp', 'osx/high-sierra']
2323
env_vars: |
2424
CI_SCHEDULE=nightly
25+
CI_INTEGRATION_ENABLED=true
2526
architecture:
2627
- x64
2728
os:
@@ -63,6 +64,8 @@ release:
6364
matrix:
6465
exclude:
6566
- os: [ osx/high-sierra ]
67+
env_vars: |
68+
CI_SCHEDULE=release
6669
after:
6770
each:
6871
- script: |

0 commit comments

Comments
 (0)