Skip to content

Commit 67093ca

Browse files
committed
Mute verbose travis command & added Github action gcp support
1 parent b7d76a1 commit 67093ca

2 files changed

Lines changed: 9 additions & 6 deletions

File tree

.github/workflows/tests.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ jobs:
2424
- name: Validate composer.json and composer.lock
2525
run: composer validate
2626

27+
- name: Setup GCP environment
28+
run: ./bin/ci/scripts/setup_gcp.sh
29+
2730
- name: Install dependencies
2831
run: ./bin/ci/scripts/install_dependencies.sh
2932

.travis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ before_install:
3838
- ./bin/ci/scripts/setup_mongodb.sh
3939
- ./bin/ci/scripts/setup_gcp.sh;
4040
- pecl channel-update pecl.php.net;
41-
- yes | pecl install -f grpc-stable;
42-
- yes | pecl install -f mongodb-stable;
43-
- yes | pecl install -f apcu-stable || true;
44-
- yes | pecl install -f memcache;
45-
- yes | pecl install -f couchbase-stable;
46-
- phpenv config-add bin/ci/php_common.ini;
41+
- yes | pecl install -f grpc-stable > /dev/null
42+
- yes | pecl install -f mongodb-stable > /dev/null
43+
- yes | pecl install -f apcu-stable > /dev/null || true
44+
- yes | pecl install -f memcache > /dev/null
45+
- yes | pecl install -f couchbase-stable > /dev/null
46+
- phpenv config-add bin/ci/php_common.ini
4747
- phpenv config-rm xdebug.ini
4848
install:
4949
- ./bin/ci/scripts/install_dependencies.sh

0 commit comments

Comments
 (0)