2020-12-27 19:45:41 +05:30
|
|
|
name: CI
|
|
|
|
|
|
|
|
on:
|
2021-01-16 01:04:04 +05:30
|
|
|
schedule:
|
|
|
|
# once per day
|
|
|
|
- cron: 0 0 * * *
|
2020-12-27 19:45:41 +05:30
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- dev
|
|
|
|
- master
|
|
|
|
pull_request:
|
|
|
|
|
2022-07-04 02:25:28 +05:30
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2020-12-27 19:45:41 +05:30
|
|
|
jobs:
|
|
|
|
build-and-test:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2022-03-02 14:55:59 +05:30
|
|
|
- uses: actions/checkout@v3
|
2020-12-27 19:45:41 +05:30
|
|
|
|
2021-05-23 18:04:16 +05:30
|
|
|
- name: set up JDK 8
|
2022-04-11 14:46:36 +05:30
|
|
|
uses: actions/setup-java@v3
|
2020-12-27 19:45:41 +05:30
|
|
|
with:
|
2021-05-23 18:04:16 +05:30
|
|
|
java-version: '8'
|
2022-07-10 21:08:08 +05:30
|
|
|
distribution: 'temurin'
|
2020-12-27 19:45:41 +05:30
|
|
|
|
|
|
|
- name: Cache Gradle dependencies
|
2022-03-21 14:42:36 +05:30
|
|
|
uses: actions/cache@v3
|
2020-12-27 19:45:41 +05:30
|
|
|
with:
|
|
|
|
path: ~/.gradle/caches
|
|
|
|
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
|
|
|
|
restore-keys: ${{ runner.os }}-gradle
|
|
|
|
|
2021-01-16 01:04:04 +05:30
|
|
|
# See gradle file for difference between downloaders
|
2020-12-27 19:45:41 +05:30
|
|
|
- name: Build and run Tests
|
2021-01-16 01:04:04 +05:30
|
|
|
run: |
|
|
|
|
if [[ $GITHUB_EVENT_NAME == 'schedule' ]]; then
|
2021-01-18 00:22:28 +05:30
|
|
|
echo running with real downloader
|
2021-01-16 01:04:04 +05:30
|
|
|
./gradlew check --stacktrace -Ddownloader=REAL
|
|
|
|
else
|
2021-01-18 00:22:28 +05:30
|
|
|
echo running with mock downloader
|
2021-01-16 01:04:04 +05:30
|
|
|
./gradlew check --stacktrace -Ddownloader=MOCK
|
|
|
|
fi
|
2022-03-27 00:27:17 +05:30
|
|
|
|
|
|
|
- name: Upload test reports when failure occurs
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
if: failure()
|
|
|
|
with:
|
|
|
|
name: NewPipeExtractor-test-reports
|
|
|
|
path: extractor/build/reports/tests/test/**
|