Skip to content

Commit 3f53ed9

Browse files
authored
ci: add source clear as a separate stage (#205)
1 parent 583b460 commit 3f53ed9

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

.travis.yml

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@ php:
88
- '7.2'
99
- '7.3'
1010
install: "composer install"
11-
addons:
12-
srcclr: true
1311
script:
1412
- mkdir -p build/logs
1513
- ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml
@@ -20,6 +18,7 @@ stages:
2018
- 'Linting'
2119
- 'Integration tests'
2220
- 'Test'
21+
- 'Source Clear'
2322

2423
jobs:
2524
include:
@@ -41,3 +40,14 @@ jobs:
4140
script:
4241
- $HOME/travisci-tools/trigger-script-with-status-update.sh
4342
after_success: travis_terminate 0
43+
44+
- stage: 'Source Clear'
45+
if: type = cron
46+
addons:
47+
srcclr: true
48+
before_install: skip
49+
install: skip
50+
before_script: skip
51+
script: skip
52+
after_script: skip
53+
after_success: skip

0 commit comments

Comments
 (0)