-
Notifications
You must be signed in to change notification settings - Fork 446
69 lines (60 loc) · 1.78 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
name: CI
on:
workflow_dispatch:
inputs:
downloaderType:
description: 'Downloader Type'
type: choice
options:
- MOCK
- REAL
schedule:
# once per day
- cron: 0 0 * * *
push:
branches:
- dev
- master
pull_request:
permissions:
contents: read
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
- name: Cache Gradle wrapper dists
uses: actions/cache@v4
with:
path: ~/.gradle/wrapper/dists
key: ${{ runner.os }}-gradle-wrapper-dists-${{ hashFiles('gradle/wrapper/**') }}
restore-keys: ${{ runner.os }}-gradle-wrapper-dists
- name: Cache Gradle dependencies
uses: actions/cache@v4
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle') }}
restore-keys: ${{ runner.os }}-gradle
# See gradle file for difference between downloaders
- name: Build and run Tests
run: |
downloader_type="${{ github.event.inputs.downloaderType || 'MOCK' }}"
if [[ "$GITHUB_EVENT_NAME" == 'schedule' ]]; then
downloader_type="REAL"
fi
echo "Running with $downloader_type downloader"
./gradlew check \
-Dorg.gradle.welcome=never \
--stacktrace \
-Ddownloader=$downloader_type
- name: Upload test reports when failure occurs
uses: actions/upload-artifact@v4
if: failure()
with:
name: NewPipeExtractor-test-reports
path: extractor/build/reports/tests/test/**