Echo which downloader is used during CI process

This commit is contained in:
XiangRongLin 2021-01-17 19:52:28 +01:00
parent beb705013c
commit a0288b8fd6
1 changed files with 2 additions and 0 deletions

View File

@ -32,7 +32,9 @@ jobs:
- name: Build and run Tests
run: |
if [[ $GITHUB_EVENT_NAME == 'schedule' ]]; then
echo running with real downloader
./gradlew check --stacktrace -Ddownloader=REAL
else
echo running with mock downloader
./gradlew check --stacktrace -Ddownloader=MOCK
fi